| /third_party/pulseaudio/src/pulsecore/ |
| H A D | cpu-arm.c | 108 char *current; in pa_cpu_get_arm_flags() local 110 while ((current = pa_split_spaces(line, &state))) { in pa_cpu_get_arm_flags() 111 if (pa_streq(current, "vfp")) in pa_cpu_get_arm_flags() 113 else if (pa_streq(current, "edsp")) in pa_cpu_get_arm_flags() 115 else if (pa_streq(current, "neon")) in pa_cpu_get_arm_flags() 117 else if (pa_streq(current, "vfpv3")) in pa_cpu_get_arm_flags() 120 pa_xfree(current); in pa_cpu_get_arm_flags()
|
| /third_party/libphonenumber/java/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/ |
| H A D | PhonePrefixMap.java | 140 * prefix and a prefix for which the name is not available in the current language. If the 141 * description is not available in the current language an empty string is returned. If no 193 int current = 0; in binarySearch() 195 current = (start + end) >>> 1; in binarySearch() 196 int currentValue = phonePrefixMapStorage.getPrefix(current); in binarySearch() 198 return current; in binarySearch() 200 current--; in binarySearch() 201 end = current; in binarySearch() 203 start = current + 1; in binarySearch() 206 return current; in binarySearch() [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
| H A D | IceMemory.h | 77 assert(current() != nullptr); in allocate() 78 return current()->template Allocate<T>(num); in allocate() 92 /// Manages the current underlying allocator. 94 typename Traits::allocator_type current() { in current() function 97 return Traits::current(); in current() 100 Current = Traits::current(); in current() 102 assert(Current == Traits::current()); in current() 143 static allocator_type current(); 170 static allocator_type current();
|
| /third_party/mesa3d/src/freedreno/ir3/ |
| H A D | ir3_merge_regs.c | 264 struct merge_def current; in merge_sets_interfere() local 266 current.reg = b->regs[b_index]; in merge_sets_interfere() 267 current.offset = current.reg->merge_set_offset + b_offset; in merge_sets_interfere() 270 current.reg = a->regs[a_index]; in merge_sets_interfere() 271 current.offset = current.reg->merge_set_offset; in merge_sets_interfere() 275 current.reg = a->regs[a_index]; in merge_sets_interfere() 276 current.offset = current in merge_sets_interfere() [all...] |
| /third_party/libfuse/example/ |
| H A D | cxxopts.hpp | 1215 int& current, 1453 auto current = std::begin(desc); in format_description() local 1454 auto startLine = current; in format_description() 1455 auto lastSpace = current; in format_description() 1459 while (current != std::end(desc)) in format_description() 1461 if (*current == ' ') in format_description() 1463 lastSpace = current; in format_description() 1466 if (*current == '\n') in format_description() 1468 startLine = current + 1; in format_description() 1475 stringAppend(result, startLine, current in format_description() 1613 checked_parse_arg( int argc, char* argv[], int& current, std::shared_ptr<OptionDetails> value, const std::string& name ) checked_parse_arg() argument 1736 int current = 1; parse() local [all...] |
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| H A D | CSCharacterIterator.java | 33 return current(); in first() 45 public char current() { in current() method in CSCharacterIterator 58 return current(); in next() 68 return current(); in previous() 78 return current(); in setIndex()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
| H A D | CSCharacterIterator.java | 35 return current(); in first() 47 public char current() { in current() method in CSCharacterIterator 60 return current(); in next() 70 return current(); in previous() 80 return current(); in setIndex()
|
| /third_party/node/deps/v8/src/snapshot/ |
| H A D | roots-serializer.cc | 51 for (FullObjectSlot current = start; current < end; ++current) { in VisitRootPointers() 52 SerializeRootObject(current); in VisitRootPointers() 53 size_t root_index = current - roots_table.begin(); in VisitRootPointers()
|
| /foundation/arkui/ace_engine/frameworks/component_test/core/ |
| H A D | component_test_tester_impl.cpp | 45 auto current = elements.front(); in FindComponentImpl() local 47 if (matcher.Match(current)) { in FindComponentImpl() 49 componentTestComponentImpl->SetUiNode(current); in FindComponentImpl() 54 const auto& children = current->GetChildren(); in FindComponentImpl() 79 auto current = elements.front(); in FindComponentsImpl() local 81 if (matcher.Match(current)) { in FindComponentsImpl() 83 componentTestComponentImpl->SetUiNode(current); in FindComponentsImpl() 88 const auto& children = current->GetChildren(); in FindComponentsImpl() 123 auto current = elements.front(); in ScrollUntilExistImpl() local 125 if (matcher.Match(current)) { in ScrollUntilExistImpl() [all...] |
| /foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
| H A D | cj_richeditor_ffi.cpp | 164 NativeRichEditorSpanResult current; in FfiOHOSAceFrameworkRichEditorOnSelect() 166 current.isText = true; in FfiOHOSAceFrameworkRichEditorOnSelect() 169 current.textResult = textResult; in FfiOHOSAceFrameworkRichEditorOnSelect() 171 current.isText = false; in FfiOHOSAceFrameworkRichEditorOnSelect() 174 current.imageResult = imageResult; in FfiOHOSAceFrameworkRichEditorOnSelect() 176 spans[idx] = current; in FfiOHOSAceFrameworkRichEditorOnSelect() 199 NativeRichEditorSpanResult current; in FfiOHOSAceFrameworkRichEditorAboutToDelete() 201 current.isText = true; in FfiOHOSAceFrameworkRichEditorAboutToDelete() 204 current.textResult = textResult; in FfiOHOSAceFrameworkRichEditorAboutToDelete() 206 current in FfiOHOSAceFrameworkRichEditorAboutToDelete() [all...] |
| /foundation/communication/ipc/ipc/native/test/unittest/common/ |
| H A D | dbinder_callback_stub_unittest.cpp | 153 IPCThreadSkeleton *current = IPCThreadSkeleton::GetCurrent(); in HWTEST_F() local 154 current->invokers_[IRemoteObject::IF_PROT_DATABUS] = invoker; in HWTEST_F() 158 std::fill(current->invokers_, current->invokers_ + IPCThreadSkeleton::INVOKER_MAX_COUNT, nullptr); in HWTEST_F() 217 IPCThreadSkeleton *current = IPCThreadSkeleton::GetCurrent(); in HWTEST_F() local 218 current->invokers_[IRemoteObject::IF_PROT_BINDER] = invoker; in HWTEST_F() 234 std::fill(current->invokers_, current->invokers_ + IPCThreadSkeleton::INVOKER_MAX_COUNT, nullptr); in HWTEST_F() 255 IPCThreadSkeleton *current = IPCThreadSkeleton::GetCurrent(); in HWTEST_F() local 256 current in HWTEST_F() [all...] |
| /third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/ |
| H A D | MatcherCompiler.java | 159 DfaNode current = start; in buildSequencesFrom() 162 nodes.add(current); in buildSequencesFrom() 163 if (dfa.outDegree(current) != 1) { in buildSequencesFrom() 166 DfaNode next = singleOutput(current); in buildSequencesFrom() 170 current = next; in buildSequencesFrom() 175 // IMPORTANT: We must not use "current.successors()" here since we need the order of insertion in buildSequencesFrom() 177 for (DfaNode out : sortedOutputs(current)) { in buildSequencesFrom() 219 Operation current = getOp(nodes.get(0)); in createOps() 222 Operation merged = current.mergeWith(next); in createOps() 224 current in createOps() [all...] |
| /third_party/skia/third_party/externals/libwebp/src/utils/ |
| H A D | huffman_utils.c | 85 int len; // current code length in BuildHuffmanTable() 144 int step; // step size to replicate values in current table in BuildHuffmanTable() 145 uint32_t low = -1; // low bits for current root entry in BuildHuffmanTable() 149 int num_open = 1; // number of open branches in current tree level in BuildHuffmanTable() 150 int table_bits = root_bits; // key length of current table in BuildHuffmanTable() 151 int table_size = 1 << table_bits; // size of current table in BuildHuffmanTable() 280 HuffmanTablesSegment *current, *next; in VP8LHuffmanTablesDeallocate() local 283 current = &huffman_tables->root; in VP8LHuffmanTablesDeallocate() 284 next = current->next; in VP8LHuffmanTablesDeallocate() 285 WebPSafeFree(current in VP8LHuffmanTablesDeallocate() [all...] |
| /third_party/skia/third_party/externals/angle2/src/third_party/ceval/ |
| H A D | ceval.h | 815 ceval_node * ceval_insert_node(ceval_node * current, ceval_node item, int isRightAssoc) { in ceval_insert_node() argument 820 while (current -> pre > item.pre) { in ceval_insert_node() 821 current = current -> parent; in ceval_insert_node() 824 while (current -> pre >= item.pre) { in ceval_insert_node() 825 current = current -> parent; in ceval_insert_node() 830 ceval_node * parent_of_openpar = current -> parent; in ceval_insert_node() 831 parent_of_openpar -> right = current -> right; in ceval_insert_node() 832 if (current in ceval_insert_node() 871 ceval_node * current = & root; ceval_make_tree() local [all...] |
| /third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
| H A D | parser.js | 122 this.current = selector; 375 * These tokens are not added to the current selector, the caller can add them or use them to amend 490 var last = this.current.last; 576 this.current._inferEndPosition(); 582 this.current.parent.append(selector); 583 this.current = selector; 587 var current = this.currToken; 590 source: getTokenSource(current), 591 sourceIndex: current[_tokenize.FIELDS.START_POS] 634 var current [all...] |
| /third_party/icu/icu4c/source/common/ |
| H A D | dictbe.cpp | 61 // The span to break begins at the current position in the text, and in findBreaks() 65 int32_t current; in findBreaks() local 69 while((current = (int32_t)utext_getNativeIndex(text)) < endPos && fSet.contains(c)) { in findBreaks() 74 rangeEnd = current; in findBreaks() 76 utext_setNativeIndex(text, current); in findBreaks() 108 int32_t current; // The candidate we're currently looking at member in PossibleWord 113 PossibleWord() : count(0), prefix(0), offset(-1), mark(0), current(0) {} in PossibleWord() 122 // Back up from the current candidate to the next shorter one; return true if that exists 130 // Mark the current candidate as the one we like 131 void markCurrent() { mark = current; } in markCurrent() 251 int32_t current; divideUpDictionaryRange() local 487 int32_t current; divideUpDictionaryRange() local 680 int32_t current; divideUpDictionaryRange() local 886 int32_t current; divideUpDictionaryRange() local [all...] |
| /third_party/node/deps/icu-small/source/common/ |
| H A D | dictbe.cpp | 60 // The span to break begins at the current position in the text, and in findBreaks() 65 int32_t current; in findBreaks() local 69 while((current = (int32_t)utext_getNativeIndex(text)) < endPos && fSet.contains(c)) { in findBreaks() 74 rangeEnd = current; in findBreaks() 76 utext_setNativeIndex(text, current); in findBreaks() 108 int32_t current; // The candidate we're currently looking at member in PossibleWord 113 PossibleWord() : count(0), prefix(0), offset(-1), mark(0), current(0) {} in PossibleWord() 122 // Back up from the current candidate to the next shorter one; return true if that exists 130 // Mark the current candidate as the one we like 131 void markCurrent() { mark = current; } in markCurrent() 251 int32_t current; divideUpDictionaryRange() local 487 int32_t current; divideUpDictionaryRange() local 680 int32_t current; divideUpDictionaryRange() local 886 int32_t current; divideUpDictionaryRange() local [all...] |
| /third_party/node/deps/v8/src/compiler/ |
| H A D | graph-visualizer.cc | 572 BasicBlock* current = (*rpo)[i]; in PrintSchedule() local 574 PrintBlockProperty("name", current->rpo_number()); in PrintSchedule() 580 for (BasicBlock* predecessor : current->predecessors()) { in PrintSchedule() 587 for (BasicBlock* successor : current->successors()) { in PrintSchedule() 598 if (current->dominator() != nullptr) { in PrintSchedule() 599 PrintBlockProperty("dominator", current->dominator()->rpo_number()); in PrintSchedule() 602 PrintIntProperty("loop_depth", current->loop_depth()); in PrintSchedule() 606 RpoNumber::FromInt(current->rpo_number())); in PrintSchedule() 622 for (BasicBlock::const_iterator it = current->begin(); in PrintSchedule() 623 it != current in PrintSchedule() 910 BasicBlock* current = (*rpo)[i]; PrintScheduledGraph() local [all...] |
| /third_party/skia/third_party/externals/icu/source/common/ |
| H A D | dictbe.cpp | 55 // The span to break begins at the current position in the text, and in findBreaks() 59 int32_t current; in findBreaks() local 63 while((current = (int32_t)utext_getNativeIndex(text)) < endPos && fSet.contains(c)) { in findBreaks() 68 rangeEnd = current; in findBreaks() 70 utext_setNativeIndex(text, current); in findBreaks() 102 int32_t current; // The candidate we're currently looking at member in PossibleWord 107 PossibleWord() : count(0), prefix(0), offset(-1), mark(0), current(0) {} in PossibleWord() 116 // Back up from the current candidate to the next shorter one; return TRUE if that exists 124 // Mark the current candidate as the one we like 125 void markCurrent() { mark = current; } in markCurrent() 242 int32_t current; divideUpDictionaryRange() local 476 int32_t current; divideUpDictionaryRange() local 668 int32_t current; divideUpDictionaryRange() local 872 int32_t current; divideUpDictionaryRange() local [all...] |
| /foundation/arkui/ui_lite/frameworks/components/ |
| H A D | ui_axis.cpp | 62 Rect current = GetContentRect(); in UpdateAxisPoints() local 63 start_.x = current.GetLeft(); in UpdateAxisPoints() 64 end_.x = current.GetRight(); in UpdateAxisPoints() 65 start_.y = enableReverse_ ? current.GetTop() : current.GetBottom(); in UpdateAxisPoints() 140 Rect current = GetContentRect(); in UpdateAxisPoints() local 141 int16_t top = current.GetTop(); in UpdateAxisPoints() 142 int16_t bottom = current.GetBottom(); in UpdateAxisPoints() 144 start_.x = current.GetLeft(); in UpdateAxisPoints()
|
| /third_party/ffmpeg/libavcodec/ |
| H A D | dxva2_vc1.c | 199 uint8_t *dxva_data, *current, *end; in commit_bitstream_and_slice_buffer() local 226 current = dxva_data; in commit_bitstream_and_slice_buffer() 234 if (start_code_size + size > end - current) { in commit_bitstream_and_slice_buffer() 238 slice->dwSliceDataLocation = current - dxva_data; in commit_bitstream_and_slice_buffer() 249 memcpy(current, start_code, start_code_size); in commit_bitstream_and_slice_buffer() 251 current[3] = 0x0c; in commit_bitstream_and_slice_buffer() 253 current[3] = 0x0b; in commit_bitstream_and_slice_buffer() 255 current += start_code_size; in commit_bitstream_and_slice_buffer() 259 memcpy(current, &ctx_pic->bitstream[position], size); in commit_bitstream_and_slice_buffer() 260 current in commit_bitstream_and_slice_buffer() [all...] |
| /third_party/node/src/crypto/ |
| H A D | crypto_bio.cc | 320 Buffer* current = read_head_; in IndexOf() local 323 CHECK_LE(current->read_pos_, current->write_pos_); in IndexOf() 324 size_t avail = current->write_pos_ - current->read_pos_; in IndexOf() 329 char* tmp = current->data_ + current->read_pos_; in IndexOf() 346 if (current->read_pos_ + avail == current->len_) { in IndexOf() 347 current in IndexOf() [all...] |
| /third_party/node/deps/v8/src/torque/ |
| H A D | earley-parser.cc | 22 LineAndColumn current{0, 0, 0}; 25 previous = current; in Advance() 26 current.offset += std::distance(from, to); in Advance() 29 current.line += 1; in Advance() 30 current.column = 0; in Advance() 32 current.column += 1; in Advance() 39 return {CurrentSourceFile::Get(), previous, current}; in ToSourcePosition() 73 for (const Item* current = this; current->prev_; current in Children() 306 InputPosition current = *pos; MatchString() local [all...] |
| /third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
| H A D | lp_setup.c | 185 /* no current bin */ in lp_setup_reset() 633 setup->fs.current.variant = variant; in lp_setup_set_fs_variant() 649 util_copy_constant_buffer(&setup->constants[i].current, in lp_setup_set_fs_constants() 653 util_copy_constant_buffer(&setup->constants[i].current, NULL, false); in lp_setup_set_fs_constants() 671 util_copy_shader_buffer(&setup->ssbos[i].current, &buffers[i]); in lp_setup_set_fs_ssbos() 674 util_copy_shader_buffer(&setup->ssbos[i].current, NULL); in lp_setup_set_fs_ssbos() 694 util_copy_image_view(&setup->images[i].current, &images[i]); in lp_setup_set_fs_images() 698 struct lp_jit_image *jit_image = &setup->fs.current.jit_context.images[i]; in lp_setup_set_fs_images() 755 util_copy_image_view(&setup->images[i].current, NULL); in lp_setup_set_fs_images() 767 if (setup->fs.current in lp_setup_set_alpha_ref_value() [all...] |
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | ucharstrietest.cpp | 239 // with next() and current(). in TestValuesForState() 304 if( (result=trie->nextForCodePoint(0x4dff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() 305 (result=trie->nextForCodePoint(0x10000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() 306 (result=trie->nextForCodePoint(0x9999))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() 307 (result=trie->nextForCodePoint(0x20000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() 308 (result=trie->nextForCodePoint(0xdfff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() 309 (result=trie->nextForCodePoint(0x10ffff))!=USTRINGTRIE_FINAL_VALUE || result!=trie->current() || in TestNextForCodePoint() 314 if( (result=trie->firstForCodePoint(0x4dff))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() 315 (result=trie->nextForCodePoint(0x10000))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() 316 (result=trie->nextForCodePoint(0x9999))!=USTRINGTRIE_NO_VALUE || result!=trie->current() || in TestNextForCodePoint() [all...] |