Home
last modified time | relevance | path

Searched refs:comb (Results 1 – 18 of 18) sorted by relevance

/external/deqp/modules/gles2/functional/
Des2fFboCompletenessTests.cpp297 bool tryCombination (const FormatCombination& comb);
301 bool SupportedCombinationTest::tryCombination (const FormatCombination& comb) in tryCombination() argument
306 attachTargetToNew(GL_COLOR_ATTACHMENT0, comb.colorKind, comb.colorFmt, in tryCombination()
308 attachTargetToNew(GL_DEPTH_ATTACHMENT, comb.depthKind, comb.depthFmt, in tryCombination()
310 attachTargetToNew(GL_STENCIL_ATTACHMENT, comb.stencilKind, comb.stencilFmt, in tryCombination()
338 FormatCombination comb; in iterate() local
347 comb.colorFmt = *col; in iterate()
348 comb.colorKind = formatKind(*col); in iterate()
351 comb.depthFmt = *dep; in iterate()
352 comb.depthKind = formatKind(*dep); in iterate()
[all …]
/external/ipsec-tools/src/libipsec/
Dkey_debug.c216 struct sadb_comb *comb; local
224 / sizeof(*comb);
225 comb = (void *)(prop + 1);
231 comb->sadb_comb_auth, comb->sadb_comb_encrypt,
232 comb->sadb_comb_flags, comb->sadb_comb_reserved);
236 comb->sadb_comb_auth_minbits,
237 comb->sadb_comb_auth_maxbits,
238 comb->sadb_comb_encrypt_minbits,
239 comb->sadb_comb_encrypt_maxbits);
243 comb->sadb_comb_soft_allocations,
[all …]
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
DPrecomposer.java1029 public static char precompose(char base, char comb) { in precompose() argument
1034 long sought = base << UNICODE_SHIFT | comb; in precompose()
/external/mesa3d/src/mesa/main/
Dff_fragment_shader.cpp271 const struct gl_tex_env_combine_packed *comb = &texUnit->_CurrentCombinePacked; in make_state_key() local
288 key->unit[i].ModeRGB = comb->ModeRGB; in make_state_key()
289 key->unit[i].ModeA = comb->ModeA; in make_state_key()
290 key->unit[i].ScaleShiftRGB = comb->ScaleShiftRGB; in make_state_key()
291 key->unit[i].ScaleShiftA = comb->ScaleShiftA; in make_state_key()
292 key->unit[i].NumArgsRGB = comb->NumArgsRGB; in make_state_key()
293 key->unit[i].NumArgsA = comb->NumArgsA; in make_state_key()
295 memcpy(key->unit[i].ArgsRGB, comb->ArgsRGB, sizeof comb->ArgsRGB); in make_state_key()
296 memcpy(key->unit[i].ArgsA, comb->ArgsA, sizeof comb->ArgsA); in make_state_key()
/external/deqp/framework/common/
DtcuTexCompareVerifier.cpp223 for (deUint32 comb = 0; comb < (1<<2); comb++) in isLinearCompareValid() local
226 if (((comb & isTrue) | (~comb & isFalse)) != (1<<2)-1) in isLinearCompareValid()
229 const bool cmp0True = ((comb>>0)&1) != 0; in isLinearCompareValid()
230 const bool cmp1True = ((comb>>1)&1) != 0; in isLinearCompareValid()
333 for (deUint32 comb = 0; comb < (1<<4); comb++) in isBilinearPCFCompareValid() local
338 if (((comb & isTrue) | (~comb & isFalse)) != (1<<4)-1) in isBilinearPCFCompareValid()
341 const BVec4 cmpTrue = extractBVec4(comb, 0); in isBilinearPCFCompareValid()
473 for (deUint32 comb = 0; comb < (1<<8); comb++) in isTrilinearPCFCompareValid() local
476 if (((comb & isTrue) | (~comb & isFalse)) != (1<<8)-1) in isTrilinearPCFCompareValid()
479 const BVec4 cmpTrue0 = extractBVec4(comb, 0); in isTrilinearPCFCompareValid()
[all …]
/external/tensorflow/tensorflow/core/platform/default/
Dlogging.h214 CheckOpMessageBuilder comb(exprtext); in MakeCheckOpString()
215 MakeCheckOpValueString(comb.ForVar1(), v1); in MakeCheckOpString()
216 MakeCheckOpValueString(comb.ForVar2(), v2); in MakeCheckOpString()
217 return comb.NewString(); in MakeCheckOpString()
/external/python/cpython2/Modules/
Dunicodedata.c633 int f,l,index,index1,comb; in nfc_nfkc() local
693 comb = 0; in nfc_nfkc()
696 if (comb) { in nfc_nfkc()
699 if (comb >= comb1) { in nfc_nfkc()
713 comb = comb1; in nfc_nfkc()
/external/python/cpython3/Modules/
Dunicodedata.c642 int f,l,index,index1,comb; in nfc_nfkc() local
713 comb = 0; in nfc_nfkc()
719 if (comb) { in nfc_nfkc()
722 if (comb >= comb1) { in nfc_nfkc()
736 comb = comb1; in nfc_nfkc()
/external/clang/utils/ABITest/
DTypeGen.py266 comb = num_combinations(len(self.values), numEnumerators)
267 if valuesCovered + comb > n:
270 valuesCovered += comb
/external/python/cpython2/Lib/test/
Dtest_itertools.py307 comb = list(combinations(s, r))
313 self.assertEqual(len(comb), 0 if r>n else fact(n) // fact(r) // fact(n-r))
319 self.assertEqual(comb, sorted(set(comb)))
324 … self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted
325 … self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dups
326 … self.assertEqual(comb, filter(set(cwr).__contains__, perm)) # comb: perm that is a cwr
327 … self.assertEqual(comb, filter(set(perm).__contains__, cwr)) # comb: cwr that is a perm
328 … self.assertEqual(comb, sorted(set(cwr) & set(perm))) # comb: both a cwr and a perm
/external/python/cpython3/Lib/test/
Dtest_itertools.py461 comb = list(combinations(s, r))
467 self.assertEqual(len(comb), 0 if r>n else fact(n) / fact(r) / fact(n-r))
473 self.assertEqual(comb, sorted(set(comb)))
478 … self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted
479 … self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb: cwrs without dups
480 … self.assertEqual(comb, list(filter(set(cwr).__contains__, perm))) # comb: perm that is a cwr
481 … self.assertEqual(comb, list(filter(set(perm).__contains__, cwr))) # comb: cwr that is a perm
482 … self.assertEqual(comb, sorted(set(cwr) & set(perm))) # comb: both a cwr and a perm
/external/pdfium/fxjs/
Dcjs_field.h362 JS_STATIC_PROP(comb, comb, Field);
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/
DTransliterator_Kanji_English.txt2414 梳>'[comb]';
2598 櫛>'[comb out]';
3826 箆>'[fine-toothed comb]';
3860 篦>'[fine-toothed comb]';
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt1671 篦子 < a\-double\-edged\-fine\-toothed\-comb;
2021 䯤 < boneware\-used\-to\-comb\-the\-hair;
6055 篦 < fine\-toothed\-comb;
14297 櫛 < comb\-out;
16592 笓 < to\-comb;
18646 㧧 < a\-comb;
20557 梳 < comb;
26216 篦子 > a\-double\-edged\-fine\-toothed\-comb;
37302 䯤 > boneware\-used\-to\-comb\-the\-hair;
40063 篦 > fine\-toothed\-comb;
[all …]
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Den-IPA.txt25321 $x{comb → kom ; # kɑb
Dinternal_raw_IPA.txt33537 comb %35897 kom
Dinternal_raw_IPA-old.txt39782 comb %26779 kom