Home
last modified time | relevance | path

Searched refs:sets (Results 1 – 25 of 2102) sorted by relevance

12345678910>>...85

/third_party/node/deps/npm/node_modules/uri-js/dist/esnext/
Dutil.js1 export function merge(...sets) { argument
2 if (sets.length > 1) {
3 sets[0] = sets[0].slice(0, -1);
4 const xl = sets.length - 1;
6 sets[x] = sets[x].slice(1, -1);
8 sets[xl] = sets[xl].slice(1);
9 return sets.join('');
12 return sets[0];
/third_party/cmsis/CMSIS/Core/Include/
Dcachel1_armv7.h145 uint32_t sets; in SCB_EnableDCache() local
156 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_EnableDCache()
160 SCB->DCISW = (((sets << SCB_DCISW_SET_Pos) & SCB_DCISW_SET_Msk) | in SCB_EnableDCache()
166 } while(sets-- != 0U); in SCB_EnableDCache()
185 uint32_t sets; in SCB_DisableDCache() local
197 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_DisableDCache()
201 SCB->DCCISW = (((sets << SCB_DCCISW_SET_Pos) & SCB_DCCISW_SET_Msk) | in SCB_DisableDCache()
207 } while(sets-- != 0U); in SCB_DisableDCache()
223 uint32_t sets; in SCB_InvalidateDCache() local
232 sets = (uint32_t)(CCSIDR_SETS(ccsidr)); in SCB_InvalidateDCache()
[all …]
/third_party/googletest/googletest/src/hwext/
Dgtest-tag.cc149 static std::vector<const TestFlag*> sets; variable
152 if (sets.size() > 0) { in ensureSetsInit()
155 sets.push_back(&TestSize); in ensureSetsInit()
156 sets.push_back(&G_TYPE); in ensureSetsInit()
157 sets.push_back(&G_SIZE); in ensureSetsInit()
158 sets.push_back(&G_RANK); in ensureSetsInit()
164 return sets; in AllHextTagSets()
171 for (unsigned int i = 0; i < sets.size(); i++) in CheckFlagsLegality()
173 const TestFlag* set = sets.at(i); in CheckFlagsLegality()
184 for (unsigned int i = 0; i < sets.size(); i++) in flagForName()
[all …]
Dgtest-filter.cc29 const std::vector<const TestFlag*>& sets = AllHextTagSets(); in printHelp() local
33 for (unsigned int i = 0; i < sets.size(); i++) { in printHelp()
34 sets.at(i)->printHelp(indents); in printHelp()
49 const std::vector<const TestFlag*>& sets = AllHextTagSets(); in getAllFilterFlagsKv() local
50 for (unsigned int i = 0; i < sets.size(); i++) { in getAllFilterFlagsKv()
51 filterFlagsKv.insert(pair<const char*, string*>(sets.at(i)->naming(), new string(""))); in getAllFilterFlagsKv()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-subset-input.cc59 hb_set_add_range (input->sets.name_ids, 0, 6); in hb_subset_input_create_or_fail()
60 hb_set_add (input->sets.name_languages, 0x0409); in hb_subset_input_create_or_fail()
86 input->sets.drop_tables->add_array (default_drop_tables, ARRAY_LENGTH (default_drop_tables)); in hb_subset_input_create_or_fail()
101 input->sets.no_subset_tables->add_array (default_no_subset_tables, in hb_subset_input_create_or_fail()
191 …input->sets.layout_features->add_array (default_layout_features, ARRAY_LENGTH (default_layout_feat… in hb_subset_input_create_or_fail()
252 return input->sets.unicodes; in hb_subset_input_unicode_set()
269 return input->sets.glyphs; in hb_subset_input_glyph_set()
Dhb-subset-plan.cc489 plan->name_ids = hb_set_copy (input->sets.name_ids); in hb_subset_plan_create()
491 plan->name_languages = hb_set_copy (input->sets.name_languages); in hb_subset_plan_create()
492 plan->layout_features = hb_set_copy (input->sets.layout_features); in hb_subset_plan_create()
493 plan->glyphs_requested = hb_set_copy (input->sets.glyphs); in hb_subset_plan_create()
494 plan->drop_tables = hb_set_copy (input->sets.drop_tables); in hb_subset_plan_create()
495 plan->no_subset_tables = hb_set_copy (input->sets.no_subset_tables); in hb_subset_plan_create()
524 _populate_unicodes_to_retain (input->sets.unicodes, input->sets.glyphs, plan); in hb_subset_plan_create()
527 !input->sets.drop_tables->has (HB_OT_TAG_GSUB), in hb_subset_plan_create()
528 !input->sets.drop_tables->has (HB_OT_TAG_GPOS), in hb_subset_plan_create()
529 !input->sets.drop_tables->has (HB_OT_TAG_GDEF)); in hb_subset_plan_create()
/third_party/boost/boost/preprocessor/seq/
Dfor_each_product.hpp26 … define BOOST_PP_SEQ_FOR_EACH_PRODUCT(macro, sets) BOOST_PP_SEQ_FOR_EACH_PRODUCT_E(BOOST_PP_FOR, m… argument
30 …BOOST_PP_SEQ_FOR_EACH_PRODUCT_R(r, macro, sets) BOOST_PP_SEQ_FOR_EACH_PRODUCT_E(BOOST_PP_FOR_ ## r… argument
33 …OOST_PP_SEQ_FOR_EACH_PRODUCT_E(impl, macro, sets) impl((BOOST_PP_SEQ_HEAD(sets)(nil), BOOST_PP_SEQ… argument
35 …ne BOOST_PP_SEQ_FOR_EACH_PRODUCT_E(impl, macro, sets) BOOST_PP_SEQ_FOR_EACH_PRODUCT_E_I(impl, macr… argument
36 …ST_PP_SEQ_FOR_EACH_PRODUCT_E_I(impl, macro, sets) impl((BOOST_PP_SEQ_HEAD(sets)(nil), BOOST_PP_SEQ… argument
/third_party/boost/tools/build/src/build/
Dbuild-request.jam24 # Expand the given build request by combining all property-sets which do not
28 rule expand-no-defaults ( property-sets * )
31 local expanded-property-sets = [ sequence.transform apply-to-property-set
32 feature.expand-subfeatures : $(property-sets) ] ;
34 # Now combine all of the expanded property-sets
35 local product = [ x-product $(expanded-property-sets) : $(feature-space) ] ;
61 local rule x-product-aux ( property-sets + )
64 local p = [ feature.split $(property-sets[1]) ] ;
79 if $(property-sets[2])
81 local rest = [ x-product-aux $(property-sets[2-]) ] ;
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetStringSpanTest.java570 void verifySpan(final UnicodeSetWithStrings sets[], final String s, int whichSpans, in verifySpan() argument
592 … limitsCount = getSpans(sets[i], (0 != (i & 1)), s, whichSpans, type, typeName, limits, in verifySpan()
637 if (!sets[SLOW].getSet().containsAll(string)) { in verifySpan()
642 if (!sets[FAST].getSet().containsAll(string)) { in verifySpan()
648 if (!sets[SLOW].getSet().containsNone(string)) { in verifySpan()
653 if (!sets[FAST].getSet().containsNone(string)) { in verifySpan()
666 void verifySpan(final UnicodeSetWithStrings sets[], final String s, int whichSpans, in verifySpan() argument
670 verifySpan(sets, s, whichSpans, expectLimits, expectCount, testName, index); in verifySpan()
677 void verifySpanBothUTFs(final UnicodeSetWithStrings sets[], final String s16, int whichSpans, in verifySpanBothUTFs() argument
685 verifySpan(sets, s16, whichSpans, expectLimits, expectCount, testName, index); in verifySpanBothUTFs()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
DUnicodeSetStringSpanTest.java573 void verifySpan(final UnicodeSetWithStrings sets[], final String s, int whichSpans, in verifySpan() argument
595 … limitsCount = getSpans(sets[i], (0 != (i & 1)), s, whichSpans, type, typeName, limits, in verifySpan()
640 if (!sets[SLOW].getSet().containsAll(string)) { in verifySpan()
645 if (!sets[FAST].getSet().containsAll(string)) { in verifySpan()
651 if (!sets[SLOW].getSet().containsNone(string)) { in verifySpan()
656 if (!sets[FAST].getSet().containsNone(string)) { in verifySpan()
669 void verifySpan(final UnicodeSetWithStrings sets[], final String s, int whichSpans, in verifySpan() argument
673 verifySpan(sets, s, whichSpans, expectLimits, expectCount, testName, index); in verifySpan()
680 void verifySpanBothUTFs(final UnicodeSetWithStrings sets[], final String s16, int whichSpans, in verifySpanBothUTFs() argument
688 verifySpan(sets, s16, whichSpans, expectLimits, expectCount, testName, index); in verifySpanBothUTFs()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dloop_fission.cpp189 std::vector<std::set<Instruction*>> sets{}; in GroupInstructionsByUseDef() local
245 if (!inst_set.empty()) sets.push_back(std::move(inst_set)); in GroupInstructionsByUseDef()
252 if (sets.size() < 2) { in GroupInstructionsByUseDef()
259 for (size_t index = 0; index < sets.size() / 2; ++index) { in GroupInstructionsByUseDef()
260 cloned_loop_instructions_.insert(sets[index].begin(), sets[index].end()); in GroupInstructionsByUseDef()
262 for (size_t index = sets.size() / 2; index < sets.size(); ++index) { in GroupInstructionsByUseDef()
263 original_loop_instructions_.insert(sets[index].begin(), sets[index].end()); in GroupInstructionsByUseDef()
/third_party/spirv-tools/source/opt/
Dloop_fission.cpp189 std::vector<std::set<Instruction*>> sets{}; in GroupInstructionsByUseDef() local
245 if (!inst_set.empty()) sets.push_back(std::move(inst_set)); in GroupInstructionsByUseDef()
252 if (sets.size() < 2) { in GroupInstructionsByUseDef()
259 for (size_t index = 0; index < sets.size() / 2; ++index) { in GroupInstructionsByUseDef()
260 cloned_loop_instructions_.insert(sets[index].begin(), sets[index].end()); in GroupInstructionsByUseDef()
262 for (size_t index = sets.size() / 2; index < sets.size(); ++index) { in GroupInstructionsByUseDef()
263 original_loop_instructions_.insert(sets[index].begin(), sets[index].end()); in GroupInstructionsByUseDef()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dloop_fission.cpp189 std::vector<std::set<Instruction*>> sets{}; in GroupInstructionsByUseDef() local
245 if (!inst_set.empty()) sets.push_back(std::move(inst_set)); in GroupInstructionsByUseDef()
252 if (sets.size() < 2) { in GroupInstructionsByUseDef()
259 for (size_t index = 0; index < sets.size() / 2; ++index) { in GroupInstructionsByUseDef()
260 cloned_loop_instructions_.insert(sets[index].begin(), sets[index].end()); in GroupInstructionsByUseDef()
262 for (size_t index = sets.size() / 2; index < sets.size(); ++index) { in GroupInstructionsByUseDef()
263 original_loop_instructions_.insert(sets[index].begin(), sets[index].end()); in GroupInstructionsByUseDef()
/third_party/icu/icu4c/source/test/intltest/
Dusettest.h178 … void testSpan(const UnicodeSetWithStrings *sets[4], const void *s, int32_t length, UBool isUTF16,
182 … void testSpan(const UnicodeSetWithStrings *sets[4], const void *s, int32_t length, UBool isUTF16,
185 void testSpanBothUTFs(const UnicodeSetWithStrings *sets[4],
189 …void testSpanContents(const UnicodeSetWithStrings *sets[4], uint32_t whichSpans, const char *testN…
190 …void testSpanUTF16String(const UnicodeSetWithStrings *sets[4], uint32_t whichSpans, const char *te…
191 …void testSpanUTF8String(const UnicodeSetWithStrings *sets[4], uint32_t whichSpans, const char *tes…
/third_party/ffmpeg/libavcodec/
Dralf.c55 VLCSet sets[3]; member
112 ff_free_vlc(&ctx->sets[i].filter_params); in decode_close()
113 ff_free_vlc(&ctx->sets[i].bias); in decode_close()
114 ff_free_vlc(&ctx->sets[i].coding_mode); in decode_close()
117 ff_free_vlc(&ctx->sets[i].filter_coeffs[j][k]); in decode_close()
119 ff_free_vlc(&ctx->sets[i].short_codes[j]); in decode_close()
121 ff_free_vlc(&ctx->sets[i].long_codes[j]); in decode_close()
164 ret = init_ralf_vlc(&ctx->sets[i].filter_params, filter_param_def[i], in decode_init()
170 ret = init_ralf_vlc(&ctx->sets[i].bias, bias_def[i], BIAS_ELEMENTS); in decode_init()
175 ret = init_ralf_vlc(&ctx->sets[i].coding_mode, coding_mode_def[i], in decode_init()
[all …]
/third_party/python/Doc/c-api/
Dobjbuffer.rst25 interface. On success, returns ``0``, sets *buffer* to the memory location
26 and *buffer_len* to the buffer length. Returns ``-1`` and sets a
34 interface. On success, returns ``0``, sets *buffer* to the memory location
35 and *buffer_len* to the buffer length. Returns ``-1`` and sets a
53 returns ``0``, sets *buffer* to the memory location and *buffer_len* to the
54 buffer length. Returns ``-1`` and sets a :exc:`TypeError` on error.
/third_party/openssl/doc/man3/
DEVP_PKEY_CTX_ctrl.pod170 The EVP_PKEY_CTX_set_signature_md() macro sets the message digest type used
189 The EVP_PKEY_CTX_set_rsa_padding() macro sets the RSA padding mode for B<ctx>.
208 The EVP_PKEY_CTX_set_rsa_pss_saltlen() macro sets the RSA PSS salt length to
210 values are supported: B<RSA_PSS_SALTLEN_DIGEST> sets the salt length to the
211 digest length, B<RSA_PSS_SALTLEN_MAX> sets the salt length to the maximum
220 The EVP_PKEY_CTX_set_rsa_keygen_bits() macro sets the RSA key length for
223 The EVP_PKEY_CTX_set_rsa_keygen_pubexp() macro sets the public exponent value
228 The EVP_PKEY_CTX_set_rsa_keygen_primes() macro sets the number of primes for
231 The EVP_PKEY_CTX_set_rsa_mgf1_md() macro sets the MGF1 digest for RSA padding
240 The EVP_PKEY_CTX_set_rsa_oaep_md() macro sets the message digest type used
[all …]
DEVP_MD_meth_new.pod69 EVP_MD_meth_set_input_blocksize() sets the internal input block size
72 EVP_MD_meth_set_result_size() sets the size of the result that the
79 EVP_MD_meth_set_flags() sets the flags to describe optional
120 EVP_MD_meth_set_init() sets the digest init function for B<md>.
125 EVP_MD_meth_set_update() sets the digest update function for B<md>.
129 EVP_MD_meth_set_final() sets the digest final function for B<md>.
133 EVP_MD_meth_set_copy() sets the function for B<md> to do extra
142 EVP_MD_meth_set_cleanup() sets the function for B<md> to do extra
150 EVP_MD_meth_set_ctrl() sets the control function for B<md>.
/third_party/openGLES/extensions/EXT/
DEXT_vertex_array_setXXX.txt24 This extension introduces named vertex array sets which encapsulate
26 sets is to keep pointers to static vertex data and provide a name
27 for different sets of static vertex data. The specification of
32 * Should we allow vertex array sets to be shared between
73 as if its name was NULL. Unlike other vertex array sets, the NULL
76 Vertex array sets are deleted by calling DeleteArraySetsEXT with
77 <arrayset> pointing to a list of <n> names of array sets to be
79 on the sets to be deleted before deleting the <arrayset>. Once a
83 that do not correspond to array sets, including NULL.
DEXT_vertex_array_set.txt23 This extension introduces named vertex array sets which encapsulate
25 sets is to keep pointers to static vertex data and provide a name
26 for different sets of static vertex data. The specification of
31 * Should we allow vertex array sets to be shared between
73 as if its name was zero. Unlike other vertex array sets, the zero
84 Vertex array sets are deleted by calling DeleteArraySetsEXT with
85 <arrayset> pointing to a list of <n> names of array sets to be
87 on the sets to be deleted before deleting the <arrayset>. Once a
91 correspond to array sets, including zero.
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_vertex_array_setXXX.txt24 This extension introduces named vertex array sets which encapsulate
26 sets is to keep pointers to static vertex data and provide a name
27 for different sets of static vertex data. The specification of
32 * Should we allow vertex array sets to be shared between
73 as if its name was NULL. Unlike other vertex array sets, the NULL
76 Vertex array sets are deleted by calling DeleteArraySetsEXT with
77 <arrayset> pointing to a list of <n> names of array sets to be
79 on the sets to be deleted before deleting the <arrayset>. Once a
83 that do not correspond to array sets, including NULL.
DEXT_vertex_array_set.txt23 This extension introduces named vertex array sets which encapsulate
25 sets is to keep pointers to static vertex data and provide a name
26 for different sets of static vertex data. The specification of
31 * Should we allow vertex array sets to be shared between
73 as if its name was zero. Unlike other vertex array sets, the zero
84 Vertex array sets are deleted by calling DeleteArraySetsEXT with
85 <arrayset> pointing to a list of <n> names of array sets to be
87 on the sets to be deleted before deleting the <arrayset>. Once a
91 correspond to array sets, including zero.
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DLocaleDataTest.java232 UnicodeSet[] sets = new UnicodeSet[scriptCodes.length]; in TestExemplarSet() local
235sets[j] = new UnicodeSet("[:" + UScript.getShortName(scriptCodes[j]) + ":]"); in TestExemplarSet()
242 for(int j=0; j<sets.length; j++){ in TestExemplarSet()
243 if(sets[j].contains(iter.codepoint, iter.codepointEnd)){ in TestExemplarSet()
249 for(int j=0; j<sets.length; j++){ in TestExemplarSet()
250 if(sets[j].contains(iter.string)){ in TestExemplarSet()
309 UnicodeSet[] sets = new UnicodeSet[scriptCodes.length]; in TestExemplarSet2() local
312sets[j] = new UnicodeSet("[:" + UScript.getShortName(scriptCodes[j]) + ":]"); in TestExemplarSet2()
319 for(int j=0; j<sets.length; j++){ in TestExemplarSet2()
320 if(sets[j].contains(iter.codepoint, iter.codepointEnd)){ in TestExemplarSet2()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleDataTest.java225 UnicodeSet[] sets = new UnicodeSet[scriptCodes.length]; in TestExemplarSet() local
228sets[j] = new UnicodeSet("[:" + UScript.getShortName(scriptCodes[j]) + ":]"); in TestExemplarSet()
235 for(int j=0; j<sets.length; j++){ in TestExemplarSet()
236 if(sets[j].contains(iter.codepoint, iter.codepointEnd)){ in TestExemplarSet()
242 for(int j=0; j<sets.length; j++){ in TestExemplarSet()
243 if(sets[j].contains(iter.string)){ in TestExemplarSet()
298 UnicodeSet[] sets = new UnicodeSet[scriptCodes.length]; in TestExemplarSet2() local
301sets[j] = new UnicodeSet("[:" + UScript.getShortName(scriptCodes[j]) + ":]"); in TestExemplarSet2()
308 for(int j=0; j<sets.length; j++){ in TestExemplarSet2()
309 if(sets[j].contains(iter.codepoint, iter.codepointEnd)){ in TestExemplarSet2()
[all …]
/third_party/openssl/
Dconfig.com11 $ ! -32 or 32 sets /POINTER_SIZE=32
12 $ ! -64 or 64 sets /POINTER_SIZE=64
13 $ ! -d sets debugging

12345678910>>...85