Home
last modified time | relevance | path

Searched refs:ga (Results 1 – 25 of 787) sorted by relevance

12345678910>>...32

/third_party/skia/third_party/externals/icu/source/data/zone/
Dee.txt952 ls{"Xexeme gaƒoƒoɖoanyi me"}
998 ld{"Ireland nutome gaƒoƒo me"}
1035 ld{"British dzomeŋɔli gaƒoƒo me"}
1290 ls{"Afghanistan gaƒoƒo me"}
1293 ls{"Central Africa gaƒoƒo me"}
1297 ls{"East Africa gaƒoƒo me"}
1301 ls{"South Africa nutome gaƒoƒo me"}
1305 ld{"West Africa dzomeŋɔli gaƒoƒo me"}
1306 lg{"West Africa gaƒoƒo me"}
1307 ls{"West Africa nutome gaƒoƒo me"}
[all …]
/third_party/icu/icu4c/source/data/zone/
Dee.txt952 ls{"Xexeme gaƒoƒoɖoanyi me"}
998 ld{"Ireland nutome gaƒoƒo me"}
1035 ld{"British dzomeŋɔli gaƒoƒo me"}
1290 ls{"Afghanistan gaƒoƒo me"}
1293 ls{"Central Africa gaƒoƒo me"}
1297 ls{"East Africa gaƒoƒo me"}
1301 ls{"South Africa nutome gaƒoƒo me"}
1305 ld{"West Africa dzomeŋɔli gaƒoƒo me"}
1306 lg{"West Africa gaƒoƒo me"}
1307 ls{"West Africa nutome gaƒoƒo me"}
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/zone/
Dee.txt952 ls{"Xexeme gaƒoƒoɖoanyi me"}
998 ld{"Ireland nutome gaƒoƒo me"}
1035 ld{"British dzomeŋɔli gaƒoƒo me"}
1290 ls{"Afghanistan gaƒoƒo me"}
1293 ls{"Central Africa gaƒoƒo me"}
1297 ls{"East Africa gaƒoƒo me"}
1301 ls{"South Africa nutome gaƒoƒo me"}
1305 ld{"West Africa dzomeŋɔli gaƒoƒo me"}
1306 lg{"West Africa gaƒoƒo me"}
1307 ls{"West Africa nutome gaƒoƒo me"}
[all …]
/third_party/boost/libs/multiprecision/test/
Dtest_cpp_bin_float.cpp348 good_type ga(1); in test_special_cases() local
350 BOOST_CHECK_EQUAL(good_type(test_type(a - b)), good_type(ga - gb)); in test_special_cases()
351 BOOST_CHECK_EQUAL(good_type(test_type(b - a)), good_type(gb - ga)); in test_special_cases()
352 BOOST_CHECK_EQUAL(good_type(test_type(a + b)), good_type(ga + gb)); in test_special_cases()
353 BOOST_CHECK_EQUAL(good_type(test_type(b + a)), good_type(gb + ga)); in test_special_cases()
355 BOOST_CHECK_EQUAL(good_type(test_type(a - -b)), good_type(ga - -gb)); in test_special_cases()
356 BOOST_CHECK_EQUAL(good_type(test_type(b - -a)), good_type(gb - -ga)); in test_special_cases()
357 BOOST_CHECK_EQUAL(good_type(test_type(a + -b)), good_type(ga + -gb)); in test_special_cases()
358 BOOST_CHECK_EQUAL(good_type(test_type(b + -a)), good_type(gb + -ga)); in test_special_cases()
360 BOOST_CHECK_EQUAL(good_type(test_type(-a - b)), good_type(-ga - gb)); in test_special_cases()
[all …]
/third_party/glslang/Test/
D100Limits.vert3 int ga, gb;
24 while (ga < gb) { }
29 for ( ; ga==gb; ); // ERROR
31 for ( ga = 0; ; ); // ERROR
36 for ( int a = 0; a <= 20; a++) { if (ga==0) a = 4; } // ERROR
38 for (float a = 0.0; a != 20.0; a -= 2.0) { if (ga==0) ga = 4; }
47 fsa[ga]; // ERROR
48 fua[ga];
49 am3[ga]; // ERROR
50 av2[ga]; // ERROR
[all …]
/third_party/skia/src/opts/
DSkBlitRow_opts.h45 __m512i ga = _mm512_srli_epi16(dst, 8); in SkPMSrcOver_SKX() local
46 ga = _mm512_mullo_epi16(ga, scale_x2); in SkPMSrcOver_SKX()
47 ga = _mm512_andnot_si512(_mm512_set1_epi32(0x00ff00ff), ga); in SkPMSrcOver_SKX()
49 return _mm512_add_epi32(src, _mm512_or_si512(rb, ga)); in SkPMSrcOver_SKX()
94 __m256i ga = _mm256_srli_epi16(dst, 8); in SkPMSrcOver_AVX2() local
95 ga = _mm256_mullo_epi16(ga, scale_x2); in SkPMSrcOver_AVX2()
96 ga = _mm256_andnot_si256(_mm256_set1_epi32(0x00ff00ff), ga); in SkPMSrcOver_AVX2()
98 return _mm256_add_epi32(src, _mm256_or_si256(rb, ga)); in SkPMSrcOver_AVX2()
114 __m128i ga = _mm_srli_epi16(dst, 8); in SkPMSrcOver_SSE2() local
115 ga = _mm_mullo_epi16(ga, scale_x2); in SkPMSrcOver_SSE2()
[all …]
DSkSwizzler_opts.h237 uint8x16x2_t ga = vld2q_u8(src); in expand_grayA() local
241 ga.val[0] = vcombine_u8( in expand_grayA()
242 scale(vget_low_u8(ga.val[0]), vget_low_u8(ga.val[1])), in expand_grayA()
243 scale(vget_high_u8(ga.val[0]), vget_high_u8(ga.val[1]))); in expand_grayA()
248 rgba.val[0] = ga.val[0]; in expand_grayA()
249 rgba.val[1] = ga.val[0]; in expand_grayA()
250 rgba.val[2] = ga.val[0]; in expand_grayA()
251 rgba.val[3] = ga.val[1]; in expand_grayA()
262 uint8x8x2_t ga = vld2_u8(src); in expand_grayA() local
266 ga.val[0] = scale(ga.val[0], ga.val[1]); in expand_grayA()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/
Dee.txt207 "a 'ga' h:mm:ss zzzz",
208 "a 'ga' h:mm:ss z",
209 "a 'ga' h:mm:ss",
210 "a 'ga' h:mm",
240 h{"a 'ga' h"}
241 hm{"a 'ga' h:mm"}
242 hms{"a 'ga' h:mm:ss"}
302 a{"a 'ga' h:mm – a 'ga' h:mm"}
303 h{"a 'ga' h:mm - 'ga' h:mm"}
304 m{"a 'ga' h:mm – 'ga' h:mm"}
[all …]
Dnnh.txt96 "mvfò màga lyɛ̌ʼ",
97 "màga lyɛ̌ʼ",
105 "mvfò màga lyɛ̌ʼ",
106 "màga lyɛ̌ʼ",
114 "mvfò màga lyɛ̌ʼ",
115 "màga lyɛ̌ʼ",
125 "mvfò màga lyɛ̌ʼ",
126 "màga lyɛ̌ʼ",
134 "mvfò màga lyɛ̌ʼ",
135 "màga lyɛ̌ʼ",
[all …]
/third_party/skia/third_party/externals/icu/source/data/locales/
Dee.txt207 "a 'ga' h:mm:ss zzzz",
208 "a 'ga' h:mm:ss z",
209 "a 'ga' h:mm:ss",
210 "a 'ga' h:mm",
240 h{"a 'ga' h"}
241 hm{"a 'ga' h:mm"}
242 hms{"a 'ga' h:mm:ss"}
302 a{"a 'ga' h:mm – a 'ga' h:mm"}
303 h{"a 'ga' h:mm - 'ga' h:mm"}
304 m{"a 'ga' h:mm – 'ga' h:mm"}
[all …]
Dnnh.txt96 "mvfò màga lyɛ̌ʼ",
97 "màga lyɛ̌ʼ",
105 "mvfò màga lyɛ̌ʼ",
106 "màga lyɛ̌ʼ",
114 "mvfò màga lyɛ̌ʼ",
115 "màga lyɛ̌ʼ",
125 "mvfò màga lyɛ̌ʼ",
126 "màga lyɛ̌ʼ",
134 "mvfò màga lyɛ̌ʼ",
135 "màga lyɛ̌ʼ",
[all …]
Dse_FI.txt222 "ga",
240 "ga",
260 "ga",
278 "ga",
1126 "-1"{"mannan ga"}
1127 "0"{"dán ga"}
1128 "1"{"boahtte ga"}
1132 one{"{0} boahtte ga"}
1133 other{"{0} boahtte ga"}
1137 one{"{0} mannan ga"}
[all …]
/third_party/icu/icu4c/source/data/locales/
Dee.txt207 "a 'ga' h:mm:ss zzzz",
208 "a 'ga' h:mm:ss z",
209 "a 'ga' h:mm:ss",
210 "a 'ga' h:mm",
240 h{"a 'ga' h"}
241 hm{"a 'ga' h:mm"}
242 hms{"a 'ga' h:mm:ss"}
302 a{"a 'ga' h:mm – a 'ga' h:mm"}
303 h{"a 'ga' h:mm - 'ga' h:mm"}
304 m{"a 'ga' h:mm – 'ga' h:mm"}
[all …]
Dnnh.txt96 "mvfò màga lyɛ̌ʼ",
97 "màga lyɛ̌ʼ",
105 "mvfò màga lyɛ̌ʼ",
106 "màga lyɛ̌ʼ",
114 "mvfò màga lyɛ̌ʼ",
115 "màga lyɛ̌ʼ",
125 "mvfò màga lyɛ̌ʼ",
126 "màga lyɛ̌ʼ",
134 "mvfò màga lyɛ̌ʼ",
135 "màga lyɛ̌ʼ",
[all …]
Dse_FI.txt222 "ga",
240 "ga",
260 "ga",
278 "ga",
1126 "-1"{"mannan ga"}
1127 "0"{"dán ga"}
1128 "1"{"boahtte ga"}
1132 one{"{0} boahtte ga"}
1133 other{"{0} boahtte ga"}
1137 one{"{0} mannan ga"}
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/
Dee.txt13 dnam{"gaƒoƒowo"}
14 one{"gaƒoƒo {0}"}
15 other{"gaƒoƒo {0}"}
51 dnam{"gaƒoƒo"}
52 one{"gaƒoƒo {0}"}
53 other{"gaƒoƒo {0}"}
89 dnam{"gaƒoƒowo"}
90 one{"gaƒoƒo {0}"}
91 other{"gaƒoƒo {0}"}
/third_party/skia/third_party/externals/icu/source/data/unit/
Dee.txt13 dnam{"gaƒoƒowo"}
14 one{"gaƒoƒo {0}"}
15 other{"gaƒoƒo {0}"}
51 dnam{"gaƒoƒo"}
52 one{"gaƒoƒo {0}"}
53 other{"gaƒoƒo {0}"}
89 dnam{"gaƒoƒowo"}
90 one{"gaƒoƒo {0}"}
91 other{"gaƒoƒo {0}"}
/third_party/icu/icu4c/source/data/unit/
Dee.txt13 dnam{"gaƒoƒowo"}
14 one{"gaƒoƒo {0}"}
15 other{"gaƒoƒo {0}"}
51 dnam{"gaƒoƒo"}
52 one{"gaƒoƒo {0}"}
53 other{"gaƒoƒo {0}"}
89 dnam{"gaƒoƒowo"}
90 one{"gaƒoƒo {0}"}
91 other{"gaƒoƒo {0}"}
/third_party/flutter/skia/src/opts/
DSkSwizzler_opts.h375 uint8x16x2_t ga = vld2q_u8(src); in expand_grayA() local
379 ga.val[0] = vcombine_u8( in expand_grayA()
380 scale(vget_low_u8(ga.val[0]), vget_low_u8(ga.val[1])), in expand_grayA()
381 scale(vget_high_u8(ga.val[0]), vget_high_u8(ga.val[1]))); in expand_grayA()
386 rgba.val[0] = ga.val[0]; in expand_grayA()
387 rgba.val[1] = ga.val[0]; in expand_grayA()
388 rgba.val[2] = ga.val[0]; in expand_grayA()
389 rgba.val[3] = ga.val[1]; in expand_grayA()
400 uint8x8x2_t ga = vld2_u8(src); in expand_grayA() local
404 ga.val[0] = scale(ga.val[0], ga.val[1]); in expand_grayA()
[all …]
/third_party/skia/third_party/externals/icu/source/data/curr/
Dee.txt340 "ekuadɔga sucre",
740 "new zealanɖga dollar",
780 "polanɖga zloty (1950–1995)",
828 "solomon ƒudomekpo dukɔwo ƒe ga dollar",
852 "singapɔga dollar",
896 "salvadɔga colón",
936 "timɔga escudo",
976 "us ga dollar",
980 "us ga dollar (ŋkeke si gbɔna tɔ)",
984 "us ga dollar (ŋkeke ma ke tɔ)",
[all …]
/third_party/icu/icu4c/source/data/curr/
Dee.txt340 "ekuadɔga sucre",
740 "new zealanɖga dollar",
780 "polanɖga zloty (1950–1995)",
828 "solomon ƒudomekpo dukɔwo ƒe ga dollar",
852 "singapɔga dollar",
896 "salvadɔga colón",
936 "timɔga escudo",
976 "us ga dollar",
980 "us ga dollar (ŋkeke si gbɔna tɔ)",
984 "us ga dollar (ŋkeke ma ke tɔ)",
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/curr/
Dee.txt339 "ekuadɔga sucre",
739 "new zealanɖga dollar",
779 "polanɖga zloty (1950–1995)",
827 "solomon ƒudomekpo dukɔwo ƒe ga dollar",
851 "singapɔga dollar",
895 "salvadɔga colón",
935 "timɔga escudo",
975 "us ga dollar",
979 "us ga dollar (ŋkeke si gbɔna tɔ)",
983 "us ga dollar (ŋkeke ma ke tɔ)",
[all …]
/third_party/glslang/Test/baseResults/
D100Limits.vert.out19 0:24 'ga' ( global highp int)
35 0:29 'ga' ( global highp int)
47 0:31 'ga' ( global highp int)
128 0:36 'ga' ( global highp int)
174 0:38 'ga' ( global highp int)
179 0:38 'ga' ( global highp int)
295 0:47 'ga' ( global highp int)
298 0:48 'ga' ( global highp int)
301 0:49 'ga' ( global highp int)
304 0:50 'ga' ( global highp int)
[all …]
/third_party/python/Modules/_sha3/kcp/
DKeccakP-1600-64.macros86 E##ga = Bga ^( Bge | Bgi ); \
87 Ca ^= E##ga; \
120 A##ga ^= Da; \
121 Bme = ROL64(A##ga, 36); \
199 E##ga = Bga ^( Bge | Bgi ); \
223 A##ga ^= Da; \
224 Bme = ROL64(A##ga, 36); \
299 E##ga = Bga ^((~Bge)& Bgi ); \
300 Ca ^= E##ga; \
333 A##ga ^= Da; \
[all …]
/third_party/flutter/skia/tools/
DSkVMBuilders.cpp190 ga = shr_16x2(d, 8); in SrcoverBuilder_I32_SWAR() local
193 ga = mul_16x2(ga, invAx2); // Keep the high 8 bits up high... in SrcoverBuilder_I32_SWAR()
194 ga = bit_clear(ga, splat(0x00ff00ff)); // ...and mask off the low bits. in SrcoverBuilder_I32_SWAR()
196 store32(dst, add(s, bit_or(rb, ga))); in SrcoverBuilder_I32_SWAR()

12345678910>>...32