Home
last modified time | relevance | path

Searched refs:g2 (Results 1 - 25 of 169) sorted by relevance

1234567

/third_party/ffmpeg/libavcodec/
H A Dflicvideo.c157 GetByteContext g2; in flic_decode_frame_8BPP() local
187 bytestream2_init(&g2, buf, buf_size); in flic_decode_frame_8BPP()
196 frame_size = bytestream2_get_le32(&g2); in flic_decode_frame_8BPP()
199 bytestream2_skip(&g2, 2); /* skip the magic number */ in flic_decode_frame_8BPP()
200 num_chunks = bytestream2_get_le16(&g2); in flic_decode_frame_8BPP()
201 bytestream2_skip(&g2, 8); /* skip padding */ in flic_decode_frame_8BPP()
210 bytestream2_get_bytes_left(&g2) >= 4) { in flic_decode_frame_8BPP()
212 chunk_size = bytestream2_get_le32(&g2); in flic_decode_frame_8BPP()
218 stream_ptr_after_chunk = bytestream2_tell(&g2) - 4 + chunk_size; in flic_decode_frame_8BPP()
220 chunk_type = bytestream2_get_le16(&g2); in flic_decode_frame_8BPP()
498 GetByteContext g2; flic_decode_frame_15_16BPP() local
798 GetByteContext g2; flic_decode_frame_24BPP() local
[all...]
H A Dgdv.c34 GetByteContext g2; member
215 static void lz_copy(PutByteContext *pb, GetByteContext *g2, int offset, unsigned len) in lz_copy() argument
222 bytestream2_seek(g2, bytestream2_tell_p(pb) - 1, SEEK_SET); in lz_copy()
223 c = bytestream2_get_byte(g2); in lz_copy()
230 bytestream2_seek(g2, start, SEEK_SET); in lz_copy()
232 bytestream2_put_byte(pb, bytestream2_get_byte(g2)); in lz_copy()
237 bytestream2_seek(g2, start, SEEK_SET); in lz_copy()
239 bytestream2_put_byte(pb, bytestream2_get_byte(g2)); in lz_copy()
248 GetByteContext *g2 = &gdv->g2; in decompress_2() local
290 GetByteContext *g2 = &gdv->g2; decompress_5() local
337 GetByteContext *g2 = &gdv->g2; decompress_68() local
[all...]
/third_party/mesa3d/src/intel/tools/tests/gen7.5/
H A Dmath.asm5 math inv(8) g11<1>.xyzF g2<0>.xyzzF null<4>F { align16 1Q };
10 math intmod(8) g4<1>UD g2<0,1,0>UD g2.3<0,1,0>UD { align1 1Q };
11 math intmod(8) g5<1>UD g2<0,1,0>UD g2.3<0,1,0>UD { align1 2Q };
15 math cos(8) g3<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q };
16 math cos(16) g4<1>F g2<8,8,1>F null<8,8,1>F { align1 1H };
24 math intdiv(8) g3<1>UD g2<0,1,0>UD g2.2<0,1,0>UD { align1 1Q };
25 math intdiv(8) g4<1>UD g2<
[all...]
/third_party/mesa3d/src/intel/tools/tests/gen8/
H A Dmath.asm7 math rsq(8) g5<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q };
12 math cos(8) g3<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q };
13 math cos(16) g4<1>F g2<8,8,1>F null<8,8,1>F { align1 1H };
16 math intdiv(8) g24<1>D g4<0,1,0>D g2.2<0,1,0>D { align1 1Q };
21 math intdiv(8) g5<1>D g2<0,1,0>D g2.4<0,1,0>D { align1 2Q };
22 math sin(16) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
23 math.sat pow(8) g3<1>F g2<0,1,0>F g2.4<0,1,0>F { align1 1Q };
24 math.sat pow(16) g3<1>F g2<
[all...]
/third_party/mesa3d/src/intel/tools/tests/gen9/
H A Dmath.asm7 math rsq(8) g5<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q };
12 math cos(8) g3<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q };
13 math cos(16) g4<1>F g2<8,8,1>F null<8,8,1>F { align1 1H };
16 math intdiv(8) g24<1>D g4<0,1,0>D g2.2<0,1,0>D { align1 1Q };
21 math intdiv(8) g5<1>D g2<0,1,0>D g2.4<0,1,0>D { align1 2Q };
22 math sin(16) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
23 math.sat pow(8) g3<1>F g2<0,1,0>F g2.4<0,1,0>F { align1 1Q };
24 math.sat pow(16) g3<1>F g2<
[all...]
/third_party/typescript/tests/baselines/reference/
H A DgenericClassWithObjectTypeArgsAndConstraints.js38 var g2: G2<D>; variable
39 var r = g2.foo2(c1, d1);
40 var r2 = g2.foo2(c1, c1);
58 var g2: G2<D>; variable
59 var r = g2.foo2(c1, d1);
60 var r2 = g2.foo2(c1, c1);
106 var g2; variable
107 var r = g2.foo2(c1, d1);
108 var r2 = g2.foo2(c1, c1);
117 var g2; variable
[all...]
H A DstrictFunctionTypesErrors.js29 declare let g2: Func<Object, string>;
33 g1 = g2; // Ok
37 g2 = g1; // Error
38 g2 = g3; // Error
39 g2 = g4; // Error
42 g3 = g2; // Ok
46 g4 = g2; // Ok
174 g1 = g2; // Ok
177 g2 = g1; // Error
178 g2
[all...]
H A DcontextualSignatureInstatiationContravariance.js8 var g2: (g: Giraffe, e: Elephant) => void; variable
9 g2 = f2; // error because Giraffe and Elephant are disjoint types
11 var h2: (g1: Giraffe, g2: Giraffe) => void;
16 var g2; variable
17 g2 = f2; // error because Giraffe and Elephant are disjoint types
H A DcontextualSignatureInstatiationCovariance.js8 var g2: (a: Animal, t: TallThing) => void; variable
9 g2 = f2; // While neither Animal nor TallThing satisfy the constraint, T is at worst a Giraffe and compatible with both via covariance.
16 var g2; variable
17 g2 = f2; // While neither Animal nor TallThing satisfy the constraint, T is at worst a Giraffe and compatible with both via covariance.
H A DinferringReturnTypeFromConstructSignatureGeneric.js25 const g2 = g(GenericNumber);
26 g2.give(1);
62 var g2 = g(GenericNumber);
63 g2.give(1);
/third_party/mesa3d/src/intel/tools/tests/gen7/
H A Dmath.asm1 math inv(8) g6<1>F g2<0,1,0>F null<8,8,1>F { align1 1Q };
2 math inv(16) g10<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
3 math inv(8) g11<1>.xyzF g2<0>.xyzzF null<4>F { align16 1Q };
23 math intdiv(8) g4<1>D g2<0,1,0>D g2.4<0,1,0>D { align1 1Q };
24 math intdiv(8) g4<1>D g2<0,1,0>D g2.4<0,1,0>D { align1 2Q };
28 math.sat exp(8) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1Q };
29 math.sat exp(16) g3<1>F g2<0,1,0>F null<8,8,1>F { align1 1H };
30 math sin(8) g3<1>F g2<
[all...]
/third_party/python/Lib/test/
H A Dtest_yield_from.py28 yield from g2()
30 def g2(): function
31 trace.append("Starting g2")
33 trace.append("Finishing g2")
38 "Starting g2",
40 "Finishing g2",
52 yield from g2()
55 def g2(): function
57 trace.append("Starting g2")
60 trace.append("Finishing g2")
86 def g2(): global() function
117 def g2(): global() function
154 def g2(): global() function
198 def g2(): global() function
239 def g2(): global() function
273 def g2(): global() function
314 def g2(): global() function
370 def g2(): global() function
391 def g2(v = None): global() function
582 def g2(): global() function
604 def g2(): global() function
640 def g2(): global() function
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dtest_eu_compact.cpp269 struct brw_reg g2 = brw_vec8_grf(2, 0); in TEST_P() local
272 brw_ADD(p, g0, g2, g4); in TEST_P()
278 struct brw_reg g2 = brw_vec8_grf(2, 0); in TEST_P() local
280 brw_ADD(p, g0, g2, brw_imm_f(1.0)); in TEST_P()
286 struct brw_reg g2 = retype(brw_vec8_grf(2, 0), BRW_REGISTER_TYPE_D); in TEST_P() local
288 brw_ADD(p, g0, g2, brw_imm_d(1)); in TEST_P()
294 struct brw_reg g2 = brw_vec8_grf(2, 0); in TEST_P() local
296 brw_MOV(p, g0, g2); in TEST_P()
302 struct brw_reg g2 = brw_vec8_grf(2, 0); in TEST_P() local
305 brw_ADD(p, m6, g2, g in TEST_P()
311 struct brw_reg g2 = brw_vec1_grf(2, 0); TEST_P() local
329 struct brw_reg g2 = brw_vec8_grf(2, 0); TEST_P() local
344 struct brw_reg g2 = brw_vec8_grf(2, 0); TEST_P() local
[all...]
/third_party/ltp/testcases/kernel/syscalls/syscall/
H A Dsyscall01.c56 gid_t g1, g2; in verify_getgid() local
60 g2 = syscall(SYS_getgid32); in verify_getgid()
62 g2 = syscall(SYS_getgid); in verify_getgid()
65 if (g1 == g2) { in verify_getgid()
69 g1, g2); in verify_getgid()
/third_party/node/deps/openssl/openssl/crypto/bn/asm/
H A Dsparcv8.S50 ld [%o1],%g2
62 umul %o3,%g2,%g2
66 addcc %o4,%g2,%o4
71 ld [%o1+8],%g2
83 umul %o3,%g2,%g2
88 addcc %o4,%g2,%o4
103 ld [%o1],%g2
107 ld [%o1],%g2
[all...]
H A Dsparcv8plus.S149 .register %g2,#scratch
154 .register %g2,#scratch
180 lduw [%o1],%g2
196 mulx %o3,%g2,%g2
199 add %o4,%g2,%o4
204 lduw [%o1+8],%g2
214 mulx %o3,%g2,%g2
217 add %o4,%g2,
[all...]
/third_party/openssl/crypto/bn/asm/
H A Dsparcv8.S50 ld [%o1],%g2
62 umul %o3,%g2,%g2
66 addcc %o4,%g2,%o4
71 ld [%o1+8],%g2
83 umul %o3,%g2,%g2
88 addcc %o4,%g2,%o4
103 ld [%o1],%g2
107 ld [%o1],%g2
[all...]
H A Dsparcv8plus.S149 .register %g2,#scratch
154 .register %g2,#scratch
180 lduw [%o1],%g2
196 mulx %o3,%g2,%g2
199 add %o4,%g2,%o4
204 lduw [%o1+8],%g2
214 mulx %o3,%g2,%g2
217 add %o4,%g2,
[all...]
/third_party/lzma/C/
H A DSha256Opt.c104 #define SM1(g0, g1, g2, g3) \
107 #define SM2(g0, g1, g2, g3) \
109 ADD_EPI32(g2, tmp) \
110 SHA25G_MSG2(g2, g1); \
112 // #define LS0(k, g0, g1, g2, g3) LOAD_SHUFFLE(g0, k)
113 // #define LS1(k, g0, g1, g2, g3) LOAD_SHUFFLE(g1, k+1)
116 #define NNN(g0, g1, g2, g3)
134 #define R4(k, g0, g1, g2, g3, OP0, OP1) \
136 OP0(g0, g1, g2, g3) \
138 OP1(g0, g1, g2, g
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dfunction-rest-parameter.js74 function g2 (a = 5, b = a + 1, ...c) { function
78 assert (g2 () === 11);
79 assert (g2 (1) === 3);
80 assert (g2 (1, 2) === 3);
81 assert (g2 (1, 2, 3) === 4);
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DETC_Decoder.cpp366 int g2 = extend_4to8bits(G2); in decodeIndividualBlock() local
369 decodeIndividualOrDifferentialBlock(dest, x, y, w, h, pitch, r1, g1, b1, r2, g2, b2, alphaValues, nonOpaquePunchThroughAlpha); in decodeIndividualBlock()
379 int g2 = extend_5to8bits(G + dG); in decodeDifferentialBlock() local
382 decodeIndividualOrDifferentialBlock(dest, x, y, w, h, pitch, r1, g1, b1, r2, g2, b2, alphaValues, nonOpaquePunchThroughAlpha); in decodeDifferentialBlock()
385 void decodeIndividualOrDifferentialBlock(unsigned char *dest, int x, int y, int w, int h, int pitch, int r1, int g1, int b1, int r2, int g2, int b2, unsigned char alphaValues[4][4], bool nonOpaquePunchThroughAlpha) const in decodeIndividualOrDifferentialBlock()
431 subblockColors1[0].set(r2 + i20, g2 + i20, b2 + i20); in decodeIndividualOrDifferentialBlock()
432 subblockColors1[1].set(r2 + i21, g2 + i21, b2 + i21); in decodeIndividualOrDifferentialBlock()
433 subblockColors1[2].set(r2 + i22, g2 + i22, b2 + i22); in decodeIndividualOrDifferentialBlock()
434 subblockColors1[3].set(r2 + i23, g2 + i23, b2 + i23); in decodeIndividualOrDifferentialBlock()
491 int g2 in decodeTBlock() local
531 int g2 = extend_4to8bits(HG2a << 1 | HG2b); decodeHBlock() local
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DETC_Decoder.cpp367 int g2 = extend_4to8bits(G2); in decodeIndividualBlock() local
370 decodeIndividualOrDifferentialBlock(dest, x, y, w, h, pitch, r1, g1, b1, r2, g2, b2, alphaValues, nonOpaquePunchThroughAlpha); in decodeIndividualBlock()
380 int g2 = extend_5to8bits(G + dG); in decodeDifferentialBlock() local
383 decodeIndividualOrDifferentialBlock(dest, x, y, w, h, pitch, r1, g1, b1, r2, g2, b2, alphaValues, nonOpaquePunchThroughAlpha); in decodeDifferentialBlock()
386 void decodeIndividualOrDifferentialBlock(unsigned char *dest, int x, int y, int w, int h, int pitch, int r1, int g1, int b1, int r2, int g2, int b2, unsigned char alphaValues[4][4], bool nonOpaquePunchThroughAlpha) const in decodeIndividualOrDifferentialBlock()
434 subblockColors1[0].set(r2 + i20, g2 + i20, b2 + i20); in decodeIndividualOrDifferentialBlock()
435 subblockColors1[1].set(r2 + i21, g2 + i21, b2 + i21); in decodeIndividualOrDifferentialBlock()
436 subblockColors1[2].set(r2 + i22, g2 + i22, b2 + i22); in decodeIndividualOrDifferentialBlock()
437 subblockColors1[3].set(r2 + i23, g2 + i23, b2 + i23); in decodeIndividualOrDifferentialBlock()
494 int g2 in decodeTBlock() local
534 int g2 = extend_4to8bits(HG2a << 1 | HG2b); decodeHBlock() local
[all...]
/third_party/python/Lib/
H A Dfractions.py415 # g2 = gcd(t, d) == gcd(t, (da//g)*(db//g)*g) == gcd(t, g)
417 # t//g2 t//g2
419 # (da//g)*(db//g)*(g//g2) (da//g)*(db//g2)
424 # We should special-case g == 1 (and g2 == 1), since 60.8% of
427 # Note, that g2 == 1 always for fractions, obtained from floats: here
432 # Let g1 = gcd(na, db) and g2 = gcd(nb, da), then
434 # na*nb na*nb (na//g1)*(nb//g2)
436 # da*db db*da (db//g1)*(da//g2)
[all...]
/third_party/lzma/CPP/Common/
H A DMyGuidDef.h32 inline int operator==(REFGUID g1, REFGUID g2) in operator ==() argument
35 if (((const unsigned char *)&g1)[i] != ((const unsigned char *)&g2)[i]) in operator ==()
39 inline int operator!=(REFGUID g1, REFGUID g2) { return !(g1 == g2); } in operator !=() argument
/third_party/ltp/testcases/network/multicast/mc_member/
H A Dmc_member_test.c112 unsigned g1, g2, g3, g4; in join_group() local
121 if (sscanf(buf, "%u.%u.%u.%u", &g1, &g2, &g3, &g4) != 4) { in join_group()
127 htonl((g1 << 24) | (g2 << 16) | (g3 << 8) | g4); in join_group()
147 unsigned g1, g2, g3, g4; in leave_group() local
156 if (sscanf(buf, "%u.%u.%u.%u", &g1, &g2, &g3, &g4) != 4) { in leave_group()
162 htonl((g1 << 24) | (g2 << 16) | (g3 << 8) | g4); in leave_group()

Completed in 13 milliseconds

1234567