Home
last modified time | relevance | path

Searched refs:G (Results 1 – 25 of 444) sorted by relevance

12345678910>>...18

/openbmc/u-boot/lib/
H A Dsha256.c62 uint32_t A, B, C, D, E, F, G, H; in sha256_process() local
111 G = ctx->state[6]; in sha256_process()
114 P(A, B, C, D, E, F, G, H, W[0], 0x428A2F98); in sha256_process()
115 P(H, A, B, C, D, E, F, G, W[1], 0x71374491); in sha256_process()
116 P(G, H, A, B, C, D, E, F, W[2], 0xB5C0FBCF); in sha256_process()
117 P(F, G, H, A, B, C, D, E, W[3], 0xE9B5DBA5); in sha256_process()
118 P(E, F, G, H, A, B, C, D, W[4], 0x3956C25B); in sha256_process()
119 P(D, E, F, G, H, A, B, C, W[5], 0x59F111F1); in sha256_process()
120 P(C, D, E, F, G, H, A, B, W[6], 0x923F82A4); in sha256_process()
121 P(B, C, D, E, F, G, H, A, W[7], 0xAB1C5ED5); in sha256_process()
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A DCVE-2019-13232_p3.patch41 if (G.cover == NULL) {
42 G.cover = malloc(sizeof(cover_t));
43 if (G.cover == NULL) {
45 ((cover_t *)G.cover)->max = 0;
47 ((cover_t *)G.cover)->num = 0;
48 - if ((G.extra_bytes != 0 &&
49 - cover_add((cover_t *)G.cover, 0, G.extra_bytes) != 0) ||
50 - cover_add((cover_t *)G.cover,
51 + if (cover_add((cover_t *)G.cover,
52 G.extra_bytes + G.ecrec.offset_start_central_directory,
[all …]
H A D11-cve-2014-8141-getzip64data.patch25 if (readbuf(__G__ (char *)G.extra_field, length) == 0)
28 - getZip64Data(__G__ G.extra_field, length);
29 + if (getZip64Data(__G__ G.extra_field, length) != PK_COOL)
36 G.unipath_filename = NULL;
37 if (G.UzO.U_flag < 2) {
91 - if (G.crec.ucsize == 0xffffffff || G.lrec.ucsize == 0xffffffff){
92 - G.lrec.ucsize = G.crec.ucsize = makeint64(offset + ef_buf);
93 - offset += sizeof(G.crec.ucsize);
94 + if ((G.crec.ucsize == Z64FLGL) || (G.lrec.ucsize == Z64FLGL))
99 + G.crec.ucsize = G.lrec.ucsize = makeint64(offset + ef_buf);
[all …]
H A DCVE-2019-13232_p1.patch21 * This condition was checked when G.incnt_leftover was set > 0 in
22 * defer_leftover_input(), and it is NOT allowed to touch G.csize
23 * before calling undefer_input() when (G.incnt_leftover > 0)
24 - * (single exception: see read_byte()'s "G.csize <= 0" handling) !!
25 + * (single exception: see readbyte()'s "G.csize <= 0" handling) !!
27 + if (G.csize < 0L)
28 + G.csize = 0L;
29 G.incnt = G.incnt_leftover + (int)G.csize;
30 G.inptr = G.inptr_leftover - (int)G.csize;
31 G.incnt_leftover = 0;
H A DCVE-2021-4217.patch33 seek_zipf(__G__ G.cur_zipfile_bufstart - G.extra_bytes +
34 (G.inptr-G.inbuf) + length);
36 - if (readbuf(__G__ (char *)G.extra_field, length) == 0)
37 + unsigned bytes_read = readbuf(__G__ (char *)G.extra_field, length);
43 if (getZip64Data(__G__ G.extra_field, length) != PK_COOL)
50 G.unipath_checksum = makelong(offset + ef_buf);
53 + if (!G.filename_full) {
62 chksum = crc32(chksum, (uch *)(G.filename_full),
63 strlen(G.filename_full));
H A DCVE-2019-13232_p2.patch176 + if (G.cover == NULL) {
177 + G.cover = malloc(sizeof(cover_t));
178 + if (G.cover == NULL) {
183 + ((cover_t *)G.cover)->span = NULL;
184 + ((cover_t *)G.cover)->max = 0;
186 + ((cover_t *)G.cover)->num = 0;
187 + if ((G.extra_bytes != 0 &&
188 + cover_add((cover_t *)G.cover, 0, G.extra_bytes) != 0) ||
189 + cover_add((cover_t *)G.cover,
190 + G.extra_bytes + G.ecrec.offset_start_central_directory,
[all …]
H A D18-cve-2014-9913-unzip-buffer-overflow.patch15 G.crec.compression_method == ENHDEFLATED) {
16 methbuf[5] = dtype[(G.crec.general_purpose_bit_flag>>1) & 3];
18 - sprintf(&methbuf[4], "%03u", G.crec.compression_method);
26 + if (G.crec.compression_method <= 999) {
27 + sprintf( &methbuf[ 4], "%03u", G.crec.compression_method);
29 + sprintf( &methbuf[ 3], "%04X", G.crec.compression_method);
H A DCVE-2015-7697.patch22 + if (G.incnt <= 0 && G.csize <= 0L) {
29 if (G.redirect_slide)
30 wsize = G.redirect_size, redirSlide = G.redirect_buffer;
H A D19-cve-2016-9844-zipinfo-buffer-overflow.patch14 ush dnum=(ush)((G.crec.general_purpose_bit_flag>>1) & 3);
17 - sprintf(&methbuf[1], "%03u", G.crec.compression_method);
25 + if (G.crec.compression_method <= 999) {
26 + sprintf( &methbuf[ 1], "%03u", G.crec.compression_method);
28 + sprintf( &methbuf[ 0], "%04X", G.crec.compression_method);
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/dvb-apps/files/dvb-scan-table/dvb-c/
H A Dde-Primacom12 [PrimaCom A.G.]
20 [PrimaCom A.G.]
28 [PrimaCom A.G.]
36 [PrimaCom A.G.]
44 [PrimaCom A.G.]
52 [PrimaCom A.G.]
60 [PrimaCom A.G.]
68 [PrimaCom A.G.]
76 [PrimaCom A.G.]
84 [PrimaCom A.G.]
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Darmada-8040-mcbin.dts89 * [42,43] XSMI (controls two 10G phys)
92 * [49] 10G port 1 interrupt
93 * [50] 10G port 0 interrupt
94 * [51] 2.5G SFP TX fault
96 * [53] 2.5G SFP mode
97 * [54] 2.5G SFP LOS
170 * Lane 4: SFI (10G)
221 * [8] CP1 10G SFP LOS
222 * [9] CP1 10G PHY RESET
223 * [10] CP1 10G SFP TX Disable
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D05974 _make_test_img -o "subformat=monolithicFlat" 2G
80 _make_test_img -o "subformat=monolithicFlat,zeroed_grain=on" 2G
85 _make_test_img -o "subformat=twoGbMaxExtentFlat" 1000G
107 _make_test_img -o "subformat=monolithicSparse" 100G
113 TEST_IMG="$TEST_IMG.qcow2" IMGFMT=qcow2 _make_test_img -o "cluster_size=4096" 1G
176 _make_test_img -o "subformat=$fmt" 31G
H A D28854 --size 1G
60 _make_test_img 1G
77 --size 1G
83 IMGFMT=raw IMGKEYSECRET= IMGOPTS= _make_test_img 1G | _filter_imgfmt
H A D288.out2 == measure 1G image file ==
7 == create 1G image file (size should be no greater than measured) ==
12 == modified 1G image file (size should be no greater than measured) ==
18 == measure preallocation=falloc 1G image file ==
/openbmc/openbmc/meta-ieisystem/meta-fp5280g3/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-ingrasys/meta-zaius/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-fii/meta-mori/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-asrock/meta-e3c246d4i/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-asrock/meta-romed8hm3/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-quanta/meta-f0b/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-quanta/meta-gbs/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-asrock/meta-e3c256d4i/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-fii/meta-kudo/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-wistron/meta-lannister/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \
/openbmc/openbmc/meta-tyan/meta-s7106/conf/templates/default/
H A Dlocal.conf.sample9 STOPTASKS,${TMPDIR},1G,100K \
10 STOPTASKS,${DL_DIR},1G,100K \
11 STOPTASKS,${SSTATE_DIR},1G,100K \

12345678910>>...18