Home
last modified time | relevance | path

Searched refs:comb (Results 1 - 25 of 27) sorted by relevance

12

/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fFboCompletenessTests.cpp310 bool tryCombination (const FormatCombination& comb);
314 bool SupportedCombinationTest::tryCombination (const FormatCombination& comb) in tryCombination() argument
319 attachTargetToNew(GL_COLOR_ATTACHMENT0, comb.colorKind, comb.colorFmt, in tryCombination()
321 attachTargetToNew(GL_DEPTH_ATTACHMENT, comb.depthKind, comb.depthFmt, in tryCombination()
323 attachTargetToNew(GL_STENCIL_ATTACHMENT, comb.stencilKind, comb.stencilFmt, in tryCombination()
351 FormatCombination comb; in iterate() local
360 comb in iterate()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DindirectTypeParameterReferences.js22 combined(comb => {
23 comb.b
24 comb.a
45 combined(function (comb) {
46 comb.b;
47 comb.a;
/third_party/zlib/
H A Dcrc32.c873 z_word_t crc0, word0, comb; in crc32_z() local
974 comb = crc_word_big(crc0 ^ words[0]); in crc32_z()
976 comb = crc_word_big(crc1 ^ words[1] ^ comb); in crc32_z()
978 comb = crc_word_big(crc2 ^ words[2] ^ comb); in crc32_z()
980 comb = crc_word_big(crc3 ^ words[3] ^ comb); in crc32_z()
982 comb = crc_word_big(crc4 ^ words[4] ^ comb); in crc32_z()
[all...]
/third_party/node/deps/zlib/
H A Dcrc32.c930 z_word_t crc0, word0, comb; in crc32_z() local
1031 comb = crc_word_big(crc0 ^ words[0]); in crc32_z()
1033 comb = crc_word_big(crc1 ^ words[1] ^ comb); in crc32_z()
1035 comb = crc_word_big(crc2 ^ words[2] ^ comb); in crc32_z()
1037 comb = crc_word_big(crc3 ^ words[3] ^ comb); in crc32_z()
1039 comb = crc_word_big(crc4 ^ words[4] ^ comb); in crc32_z()
[all...]
/third_party/python/Lib/test/
H A Dtest_math.py1958 comb = math.comb
1963 self.assertEqual(comb(n, k), factorial(n)
1969 self.assertEqual(comb(n, k), comb(n - 1, k - 1) + comb(n - 1, k))
1973 self.assertEqual(comb(n, 0), 1)
1974 self.assertEqual(comb(n, n), 1)
1977 self.assertEqual(comb(n, 1), n)
1978 self.assertEqual(comb(
[all...]
H A Dtest_itertools.py282 [e for e in values if e in c]) # comb is a subsequence of the input iterable
370 [e for e in values if e in c]) # comb is a subsequence of the input iterable
472 comb = list(combinations(s, r))
478 self.assertEqual(len(comb), 0 if r>n else fact(n) / fact(r) / fact(n-r))
484 self.assertEqual(comb, sorted(set(comb)))
489 self.assertEqual(comb, [t for t in perm if sorted(t)==list(t)]) # comb: perms that are sorted
490 self.assertEqual(comb, [t for t in cwr if len(set(t))==r]) # comb
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dff_fragment_shader.cpp274 const struct gl_tex_env_combine_packed *comb = in make_state_key() local
292 key->unit[i].ModeRGB = comb->ModeRGB; in make_state_key()
293 key->unit[i].ModeA = comb->ModeA; in make_state_key()
294 key->unit[i].ScaleShiftRGB = comb->ScaleShiftRGB; in make_state_key()
295 key->unit[i].ScaleShiftA = comb->ScaleShiftA; in make_state_key()
296 key->unit[i].NumArgsRGB = comb->NumArgsRGB; in make_state_key()
297 key->unit[i].NumArgsA = comb->NumArgsA; in make_state_key()
299 memcpy(key->unit[i].ArgsRGB, comb->ArgsRGB, sizeof comb->ArgsRGB); in make_state_key()
300 memcpy(key->unit[i].ArgsA, comb in make_state_key()
[all...]
/third_party/node/deps/minimatch/src/dist/cjs/
H A Dbrace-expressions.js144 const comb = ranges.length && negs.length
149 return [comb, uflag, endPos - pos, true];
/third_party/node/deps/npm/node_modules/minimatch/dist/cjs/
H A Dbrace-expressions.js144 const comb = ranges.length && negs.length
149 return [comb, uflag, endPos - pos, true];
/third_party/node/deps/minimatch/src/dist/mjs/
H A Dbrace-expressions.js141 const comb = ranges.length && negs.length
146 return [comb, uflag, endPos - pos, true];
/third_party/node/deps/npm/node_modules/minimatch/dist/mjs/
H A Dbrace-expressions.js141 const comb = ranges.length && negs.length
146 return [comb, uflag, endPos - pos, true];
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_pullup_init.c36 s->comb = ff_pullup_filter_comb_mmx; in ff_pullup_init_x86()
/third_party/mbedtls/scripts/
H A Dcode_size_compare.py256 for comb in CodeSizeBuildInfo.SupportedArchConfig:
257 self.logger.error(comb)
260 for comb in CodeSizeBuildInfo.SupportedArchConfig:
261 if "default" in comb and self.host_arch not in comb:
263 self.logger.error(comb)
/third_party/vk-gl-cts/framework/common/
H A DtcuTexCompareVerifier.cpp229 for (deUint32 comb = 0; comb < (1<<2); comb++)
232 if (((comb & isTrue) | (~comb & isFalse)) != (1<<2)-1)
235 const bool cmp0True = ((comb>>0)&1) != 0;
236 const bool cmp1True = ((comb>>1)&1) != 0;
339 for (deUint32 comb = 0; comb < (1<<4); comb
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_pullup.h65 int (*comb)(const uint8_t *a, const uint8_t *b, ptrdiff_t s); member
H A Dvf_pullup.c83 int i, j, comb = 0; in comb_c() local
87 comb += ABS((a[j] << 1) - b[j - s] - b[j ]) + in comb_c()
93 return comb; in comb_c()
106 return 4 * var; /* match comb scaling */ in var_c()
207 s->comb = comb_c; in config_input()
597 compute_metric(s, f->combs, parity ? f->prev : f, 0, parity ? f : f->prev, 1, s->comb); in pullup_submit_field()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_search.c717 for (unsigned comb = 0; comb < comm_expr_combinations; comb++) { in nir_replace_instr()
721 state.comm_op_direction = comb; in nir_replace_instr()
/third_party/python/Modules/
H A Dunicodedata.c653 int f,l,index,index1,comb; in nfc_nfkc() local
724 comb = 0; in nfc_nfkc()
730 if (comb) { in nfc_nfkc()
733 if (comb >= comb1) { in nfc_nfkc()
747 comb = comb1; in nfc_nfkc()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleTests.cpp6602 for (const auto& comb : combs)
6605 std::set<vk::VkSampleCountFlagBits> uniqueVals(begin(comb), end(comb));
6612 for (const auto& count : comb)
6624 comb, // SampleCounts subpassCounts;
6635 for (auto& comb : combs)
6638 const auto fbCount = comb.back();
6639 comb.pop_back();
6642 std::set<vk::VkSampleCountFlagBits> uniqueVals(begin(comb), end(comb));
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleTests.cpp5708 for (const auto& comb : combs)
5711 std::set<vk::VkSampleCountFlagBits> uniqueVals(begin(comb), end(comb));
5719 for (const auto& count : comb)
5732 comb, // SampleCounts subpassCounts;
5743 for (auto& comb : combs)
5746 const auto fbCount = comb.back();
5747 comb.pop_back();
5750 std::set<vk::VkSampleCountFlagBits> uniqueVals(begin(comb), end(comb));
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/
H A DvktFragmentShadingRateBasic.cpp245 VkExtent2D Combine (VkExtent2D ext0, VkExtent2D ext1, VkFragmentShadingRateCombinerOpKHR comb) const;
246 deInt32 CombineMasks (deInt32 rateMask0, deInt32 rateMask1, VkFragmentShadingRateCombinerOpKHR comb, bool allowUnclampedResult) const;
851 VkExtent2D FSRTestInstance::Combine(VkExtent2D ext0, VkExtent2D ext1, VkFragmentShadingRateCombinerOpKHR comb) const in Combine()
854 switch (comb) in Combine()
882 deInt32 FSRTestInstance::CombineMasks(deInt32 rateMask0, deInt32 rateMask1, VkFragmentShadingRateCombinerOpKHR comb, bool allowUnclampedResult) const in CombineMasks() argument
896 VkExtent2D combinerResult = Combine(rate0, ShadingRateEnumToExtent(j), comb); in CombineMasks()
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha512-parisc.pl667 comb,= $inp,$num,L\$done
804 s/cmpb,\*/comb,/ if ($SIZE_T==4);
/third_party/node/deps/openssl/openssl/crypto/modes/asm/
H A Dghash-parisc.pl606 comb,<> $inp,$len,L\$outer_ghash_pa1
744 s/cmpb,\*/comb,/;
/third_party/openssl/crypto/modes/asm/
H A Dghash-parisc.pl606 comb,<> $inp,$len,L\$outer_ghash_pa1
744 s/cmpb,\*/comb,/;
/third_party/openssl/crypto/sha/asm/
H A Dsha512-parisc.pl667 comb,= $inp,$num,L\$done
804 s/cmpb,\*/comb,/ if ($SIZE_T==4);

Completed in 41 milliseconds

12