/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | CollationRegressionTest.java | 1079 int elem; in Test4179686() 1082 while ((elem = iter.next()) != CollationElementIterator.NULLORDER) { in Test4179686() 1083 elements.add(new Integer(elem)); in Test4179686() 1089 while ((elem = iter.previous()) != CollationElementIterator.NULLORDER) { in Test4179686() 1092 if (elem != expect) { in Test4179686() 1094 + ": got " + Integer.toString(elem,16) in Test4179686()
|
/third_party/vulkan-loader/tests/ |
H A D | loader_alloc_callback_tests.cpp | 79 auto elem = allocations.find(pOriginal); in reallocate() local 80 if (elem == allocations.end()) return nullptr; in reallocate() 81 size_t original_size = elem->second.requested_size_bytes; in reallocate() 88 allocations.erase(elem); in reallocate() 99 allocations.erase(elem); in reallocate() 105 auto elem = allocations.find(pMemory); in free() 106 if (elem == allocations.end()) return; in free() 107 allocations.erase(elem); in free()
|
/third_party/python/Objects/ |
H A D | setobject.c | 2397 PyObject *elem=NULL, *dup=NULL, *t, *f, *dup2, *x=NULL; in test_c_api() local 2433 elem = PySet_Pop(ob); in test_c_api() 2434 assert(PySet_Contains(ob, elem) == 0); in test_c_api() 2436 assert(PySet_Add(ob, elem) == 0); in test_c_api() 2437 assert(PySet_Contains(ob, elem) == 1); in test_c_api() 2439 assert(PySet_Discard(ob, elem) == 1); in test_c_api() 2441 assert(PySet_Discard(ob, elem) == 0); in test_c_api() 2454 assert(PySet_Add(f, elem) == 0); in test_c_api() 2456 assertRaises(PySet_Add(f, elem) == -1, PyExc_SystemError); in test_c_api() 2480 assertRaises(PySet_Contains(t, elem) in test_c_api() [all...] |
/third_party/alsa-utils/alsamixer/ |
H A D | mixer_controls.h | 7 snd_mixer_elem_t *elem; member
|
/third_party/python/Lib/test/ |
H A D | test_itertools.py | 755 for elem in g: 756 self.assertEqual(k, elem[0]) 757 dup.append(elem) 764 for elem in g: 765 self.assertEqual(k, elem[0]) 766 dup.append(elem) 773 for elem in ig: 774 self.assertEqual(k, elem[0]) 775 self.assertEqual(ik, elem[2]) 776 dup.append(elem) [all...] |
H A D | test_sort.py | 315 elem.__class__ = WackyList2 326 elem = L[-1] 331 elem = L[-1]
|
/third_party/python/Lib/ |
H A D | reprlib.py | 72 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)]
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Traits.hpp | 196 using elem = typename std::remove_pointer<T>::type; 197 using type = CToReactorPtrT<elem>;
|
/third_party/rust/crates/syn/codegen/src/ |
H A D | visit.rs | 71 for (i, elem) in t.iter().enumerate() { in visit() 75 let val = visit(elem, features, defs, &it).unwrap_or_else(|| noop_visit(&it)); in visit()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | raw_hash_set.h | 1017 for (auto& elem : that) insert(std::move(elem)); 1170 const auto& elem = PolicyTraits::element(CommonAccess::GetSlot(node)); 1173 elem); 1214 const auto& elem = PolicyTraits::element(slot); 1215 return PolicyTraits::apply(InsertSlot<true>{*this, std::move(*slot)}, elem); 1506 for (const value_type& elem : *outer) 1507 if (!inner->has_element(elem)) return false; 1803 bool has_element(const value_type& elem) const { 1804 size_t hash = PolicyTraits::apply(HashElement{hash_ref()}, elem); [all...] |
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | _swizzle.hpp | 14 GLM_FUNC_QUALIFIER T& elem(size_t i){ return (reinterpret_cast<T*>(_buffer))[i]; } in elem() function 15 GLM_FUNC_QUALIFIER T const& elem(size_t i) const{ return (reinterpret_cast<const T*>(_buffer))[i]; } in elem() function 19 // elem() 31 GLM_FUNC_QUALIFIER vecType<T, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E1)); } in operator ()() 37 GLM_FUNC_QUALIFIER vecType<T, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E1), this->elem(E2)); } in operator ()() 43 GLM_FUNC_QUALIFIER vecType<T, P> operator ()() const { return vecType<T, P>(this->elem(E0), this->elem(E [all...] |
/third_party/node/test/fixtures/wpt/WebCryptoAPI/wrapKey_unwrapKey/ |
H A D | wrapKey_unwrapKey.https.any.js | 320 return "[" + obj.map(function(elem){return objectToString(elem);}).join(", ") + "]"; 339 value = "[" + value.map(function(elem){return objectToString(elem);}).join(", ") + "]";
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-macro-assembler.cc | 212 const base::uc16 elem = ranges.get_uint16(mid); in IsCharacterInRangeArray() local 213 if (current_char < elem) { in IsCharacterInRangeArray() 215 } else if (current_char > elem) { in IsCharacterInRangeArray() 218 DCHECK_EQ(current_char, elem); in IsCharacterInRangeArray()
|
/drivers/peripheral/audio/supportlibs/alsa_adapter/src/ |
H A D | alsa_soundcard.c | 1290 snd_hctl_elem_t *elem = NULL;
in SndTraversalMixerElement() local 1311 for (elem = snd_hctl_first_elem(handle); elem; elem = snd_hctl_elem_next(elem)) {
in SndTraversalMixerElement() 1312 ret = snd_hctl_elem_info(elem, elem_info);
in SndTraversalMixerElement() 1321 snd_hctl_elem_get_id(elem, elem_id);
in SndTraversalMixerElement()
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_softvol.c | 48 snd_ctl_elem_value_t elem; member 438 if (snd_ctl_elem_read(svol->ctl, &svol->elem) < 0) in get_current_volume() 441 val = svol->elem.value.integer.value[i]; in get_current_volume() 693 snd_output_printf(out, "Control: %s\n", svol->elem.id.name); in snd_pcm_softvol_dump() 748 svol->elem.value.integer.value[i] = def_val; in add_user_ctl() 749 return snd_ctl_elem_write(svol->ctl, &svol->elem); in add_user_ctl() 786 svol->elem.id = *ctl_id; in softvol_load_control()
|
/third_party/pulseaudio/src/modules/alsa/ |
H A D | module-alsa-card.c | 374 snd_hctl_elem_t *elem = snd_mixer_elem_get_private(melem); in report_jack_state() local 404 if (snd_hctl_elem_read(elem, elem_value) < 0) { in report_jack_state() 405 pa_log_warn("Failed to read jack detection from '%s'", pa_strnull(snd_hctl_elem_get_name(elem))); in report_jack_state() 411 pa_log_debug("Jack '%s' is now %s", pa_strnull(snd_hctl_elem_get_name(elem)), plugged_in ? "plugged in" : "unplugged"); in report_jack_state() 566 snd_hctl_elem_t *elem = snd_mixer_elem_get_private(melem); in hdmi_eld_changed() local 567 int device = snd_hctl_elem_get_device(elem); in hdmi_eld_changed() 582 if (pa_alsa_get_hdmi_eld(elem, &eld) < 0) in hdmi_eld_changed()
|
/third_party/python/Parser/ |
H A D | parser.c | 23777 stmt_ty elem; in _loop0_5_rule() local 23781 (elem = simple_stmt_rule(p)) // simple_stmt in _loop0_5_rule() 23784 _res = elem; in _loop0_5_rule() 23844 stmt_ty elem; in _gather_4_rule() local 23847 (elem = simple_stmt_rule(p)) // simple_stmt in _gather_4_rule() 23853 _res = _PyPegen_seq_insert_in_front(p, elem, seq); in _gather_4_rule() 24604 expr_ty elem; in _loop0_19_rule() local 24608 (elem = _PyPegen_name_token(p)) // NAME in _loop0_19_rule() 24611 _res = elem; in _loop0_19_rule() 24671 expr_ty elem; in _gather_18_rule() local 24723 expr_ty elem; _loop0_21_rule() local 24790 expr_ty elem; _gather_20_rule() local 25088 alias_ty elem; _loop0_27_rule() local 25155 alias_ty elem; _gather_26_rule() local 25254 alias_ty elem; _loop0_30_rule() local 25321 alias_ty elem; _gather_29_rule() local 26692 withitem_ty elem; _loop0_52_rule() local 26759 withitem_ty elem; _gather_51_rule() local 26811 withitem_ty elem; _loop0_54_rule() local 26878 withitem_ty elem; _gather_53_rule() local 26930 withitem_ty elem; _loop0_56_rule() local 26997 withitem_ty elem; _gather_55_rule() local 27049 withitem_ty elem; _loop0_58_rule() local 27116 withitem_ty elem; _gather_57_rule() local 27558 pattern_ty elem; _loop0_66_rule() local 27625 pattern_ty elem; _gather_65_rule() local 27947 pattern_ty elem; _loop0_72_rule() local 28014 pattern_ty elem; _gather_71_rule() local 28066 KeyPatternPair* elem; _loop0_74_rule() local 28133 KeyPatternPair* elem; _gather_73_rule() local 28243 pattern_ty elem; _loop0_77_rule() local 28310 pattern_ty elem; _gather_76_rule() local 28362 KeyPatternPair* elem; _loop0_79_rule() local 28429 KeyPatternPair* elem; _gather_78_rule() local 28627 expr_ty elem; _loop0_83_rule() local 28694 expr_ty elem; _gather_82_rule() local 29009 void *elem; _loop0_89_rule() local 29076 void *elem; _gather_88_rule() local 30574 KeyValuePair* elem; _loop0_112_rule() local 30641 KeyValuePair* elem; _gather_111_rule() local 30962 void *elem; _loop0_118_rule() local 31030 void *elem; _gather_117_rule() local 31129 KeywordOrStarred* elem; _loop0_121_rule() local 31196 KeywordOrStarred* elem; _gather_120_rule() local 31248 KeywordOrStarred* elem; _loop0_123_rule() local 31315 KeywordOrStarred* elem; _gather_122_rule() local 31367 KeywordOrStarred* elem; _loop0_125_rule() local 31434 KeywordOrStarred* elem; _gather_124_rule() local 31486 KeywordOrStarred* elem; _loop0_127_rule() local 31553 KeywordOrStarred* elem; _gather_126_rule() local 31673 expr_ty elem; _loop0_130_rule() local 31740 expr_ty elem; _gather_129_rule() local 31906 expr_ty elem; _loop0_134_rule() local 31973 expr_ty elem; _gather_133_rule() local 32025 expr_ty elem; _loop0_136_rule() local 32092 expr_ty elem; _gather_135_rule() local 32144 expr_ty elem; _loop0_138_rule() local 32211 expr_ty elem; _gather_137_rule() local 32263 expr_ty elem; _loop0_140_rule() local 32330 expr_ty elem; _gather_139_rule() local 32382 expr_ty elem; _loop0_142_rule() local 32449 expr_ty elem; _gather_141_rule() local 34796 arg_ty elem; _loop0_179_rule() local 34863 arg_ty elem; _gather_178_rule() local 35838 void *elem; _loop0_195_rule() local 35905 void *elem; _gather_194_rule() local 35957 void *elem; _loop0_197_rule() local 36024 void *elem; _gather_196_rule() local 36076 void *elem; _loop0_199_rule() local 36143 void *elem; _gather_198_rule() local 36195 void *elem; _loop0_201_rule() local 36262 void *elem; _gather_200_rule() local 37141 KeyValuePair* elem; _loop0_219_rule() local 37208 KeyValuePair* elem; _gather_218_rule() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_format_s3tc.c | 253 LLVMValueRef elem = elems[0]; in lp_build_gather_s3tc() local 255 *alpha_lo = LLVMBuildExtractElement(builder, elem, in lp_build_gather_s3tc() 257 *alpha_hi = LLVMBuildExtractElement(builder, elem, in lp_build_gather_s3tc() 259 *colors = LLVMBuildExtractElement(builder, elem, in lp_build_gather_s3tc() 261 *codewords = LLVMBuildExtractElement(builder, elem, in lp_build_gather_s3tc() 267 *colors = LLVMBuildExtractElement(builder, elem, in lp_build_gather_s3tc() 269 *codewords = LLVMBuildExtractElement(builder, elem, in lp_build_gather_s3tc() 1097 LLVMValueRef elem, shuf; in lp_build_gather_s3tc_simple_scalar() local 1105 elem = LLVMBuildLoad2(builder, src_type, ptr, ""); in lp_build_gather_s3tc_simple_scalar() 1109 *dxt_block = LLVMBuildBitCast(builder, elem, type32_ in lp_build_gather_s3tc_simple_scalar() 2353 LLVMValueRef elem = elems[0]; lp_build_gather_rgtc() local [all...] |
/third_party/mesa3d/src/compiler/spirv/ |
H A D | vtn_glsl450.c | 125 nir_ssa_def *elem[4]; in matrix_inverse() local 127 elem[r] = build_mat_subdet(&b->nb, cols, size, c, r); in matrix_inverse() 130 elem[r] = nir_fneg(&b->nb, elem[r]); in matrix_inverse() 133 adj_col[c] = nir_vec(&b->nb, elem, size); in matrix_inverse()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | scalar_replacement_pass.cpp | 390 uint32_t elem = 0; in CreateReplacementVariables() local 394 [this, inst, &elem, replacements, &components_used](uint32_t* id) { in CreateReplacementVariables() 395 if (!components_used || components_used->count(elem)) { in CreateReplacementVariables() 396 CreateVariable(*id, inst, elem, replacements); in CreateReplacementVariables() 400 elem++; in CreateReplacementVariables()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | scalar_replacement_pass.cpp | 390 uint32_t elem = 0; in CreateReplacementVariables() local 394 [this, inst, &elem, replacements, &components_used](uint32_t* id) { in CreateReplacementVariables() 395 if (!components_used || components_used->count(elem)) { in CreateReplacementVariables() 396 CreateVariable(*id, inst, elem, replacements); in CreateReplacementVariables() 400 elem++; in CreateReplacementVariables()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/ |
H A D | graphcycles.cc | 193 // HASH_FOR_EACH(elem, node->out) { ... } 194 #define HASH_FOR_EACH(elem, eset) \ 195 for (int32_t elem, _cursor = 0; (eset).Next(&_cursor, &elem); ) 196 bool Next(int32_t* cursor, int32_t* elem) { in Next() argument 201 *elem = v; in Next()
|
/third_party/alsa-lib/src/mixer/ |
H A D | mixer_local.h | 59 void (*private_free)(snd_mixer_elem_t *elem); 68 struct list_head classes; /* list of all elem classes */
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | interworking.c | 2821 struct wpa_bss_anqp_elem *tmp, *elem = NULL; in anqp_add_extra() local 2829 elem = tmp; in anqp_add_extra() 2834 if (!elem) { in anqp_add_extra() 2835 elem = os_zalloc(sizeof(*elem)); in anqp_add_extra() 2836 if (!elem) in anqp_add_extra() 2838 elem->infoid = info_id; in anqp_add_extra() 2839 dl_list_add(&anqp->anqp_elems, &elem->list); in anqp_add_extra() 2841 wpabuf_free(elem->payload); in anqp_add_extra() 2844 elem in anqp_add_extra() [all...] |
/third_party/vixl/src/aarch64/ |
H A D | decoder-aarch64.cc | 64 auto elem{decode_nodes_.find(name)}; in GetDecodeNode() 65 if (elem == decode_nodes_.end()) { in GetDecodeNode() 69 return &elem->second; in GetDecodeNode()
|