| /third_party/node/deps/v8/src/execution/ |
| H A D | simulator.h | 51 return Simulator::current(isolate)->StackLimit(c_limit); in JsLimitFromCLimit() 54 // Returns the current stack address on the simulator stack frame. 61 return Simulator::current(isolate)->PushAddress(kPlaceHolder); in RegisterJSStackComparableAddress() 66 Simulator::current(isolate)->PopAddress(); in UnregisterJSStackComparableAddress() 84 // Returns the current stack address on the native stack frame. 132 return Simulator::current(isolate_)->template Call<Return>( in Call()
|
| /foundation/arkui/ace_engine/frameworks/core/animation/ |
| H A D | shared_transition_effect.cpp | 364 auto current = GetCurrentSharedElement().Upgrade(); in Allow() local 365 if (!current) { in Allow() 371 allow = current->IsEnablePushEnter(); in Allow() 374 allow = current->IsEnablePopEnter(); in Allow() 406 auto current = GetCurrentSharedElement(); in ApplyAnimation() local 407 if (!CheckIn(event, current, ticket)) { in ApplyAnimation() 412 return TakeOff(event, overlay, current, ticket, option); in ApplyAnimation() 417 auto current = GetCurrentSharedElement().Upgrade(); in AddLazyLoadCallback() local 418 if (!current) { in AddLazyLoadCallback() 419 LOGE("Add Lazy load Callback failed. current i in AddLazyLoadCallback() [all...] |
| H A D | shared_transition_controller.cpp | 272 auto current = currentWeak.Upgrade(); in PrepareEachTransition() local 273 if (!current) { in PrepareEachTransition() 277 auto option = current->GetOption(); in PrepareEachTransition() 293 current->SetVisible(false); in PrepareEachTransition() 295 auto current = currentWeak.Upgrade(); in PrepareEachTransition() 296 if (!current) { in PrepareEachTransition() 301 current->SetVisible(true); in PrepareEachTransition()
|
| /foundation/arkui/ui_lite/frameworks/components/ |
| H A D | ui_analog_clock.cpp | 224 Rect current = GetOrigRect(); in OnPostDraw() local 225 DrawHand(gfxDstBuffer, current, invalidatedArea, hourHand_); in OnPostDraw() 226 DrawHand(gfxDstBuffer, current, invalidatedArea, minuteHand_); in OnPostDraw() 228 DrawHand(gfxDstBuffer, current, invalidatedArea, secondHand_); in OnPostDraw() 233 void UIAnalogClock::CalculateRedrawArea(const Rect& current, Hand& hand, bool clockInit) in CalculateRedrawArea() argument 236 * Use the current image as an independent rectangular area in CalculateRedrawArea() 242 int16_t left = hand.position_.x + current.GetLeft(); in CalculateRedrawArea() 244 int16_t top = hand.position_.y + current.GetTop(); in CalculateRedrawArea() 265 void UIAnalogClock::DrawHand(BufferInfo& gfxDstBuffer, const Rect& current, const Rect& invalidatedArea, Hand& hand) in DrawHand() argument 268 DrawHandImage(gfxDstBuffer, current, invalidatedAre in DrawHand() 274 DrawHandImage(BufferInfo& gfxDstBuffer, const Rect& current, const Rect& invalidatedArea, Hand& hand) DrawHandImage() argument [all...] |
| /third_party/node/deps/v8/src/builtins/ |
| H A D | builtins-string.cc | 268 base::uc32 current = stream.GetNext(); in ConvertCaseHelper() local 273 int char_length = mapping->get(current, next, chars); in ConvertCaseHelper() 276 result.Set(i, current); in ConvertCaseHelper() 279 (ignore_overflow || !ToUpperOverflows(current))) { in ConvertCaseHelper() 281 DCHECK(static_cast<base::uc32>(chars[0]) != current); in ConvertCaseHelper() 286 bool overflows = ToUpperOverflows(current); in ConvertCaseHelper() 305 current = stream.GetNext(); in ConvertCaseHelper() 306 overflows |= ToUpperOverflows(current); in ConvertCaseHelper() 311 int char_length = mapping->get(current, 0, chars); in ConvertCaseHelper() 331 current in ConvertCaseHelper() [all...] |
| /third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_variable.c | 431 struct rc_list * current = variable_list; in rc_get_variables() local 432 for(unsigned int i = 0; current; i++, current = current->Next) { in rc_get_variables() 433 struct rc_variable * var = current->Item; in rc_get_variables() 439 current = variable_list; in rc_get_variables() 440 for(unsigned int i = 0; current; i++, current = current->Next) { in rc_get_variables() 441 current in rc_get_variables() [all...] |
| /third_party/libsnd/src/ |
| H A D | chunk.c | 82 psf->iterator->current = idx ; in psf_get_chunk_iterator() 92 iterator->current++ ; in psf_next_chunk_iterator() 95 { for (k = iterator->current ; k < pchk->used ; k++) in psf_next_chunk_iterator() 97 { iterator->current = k ; in psf_next_chunk_iterator() 101 else if (iterator->current < pchk->used) in psf_next_chunk_iterator() 189 { if (marker->current < pchk->used) in psf_find_read_chunk_iterator() 190 return marker->current ; in psf_find_read_chunk_iterator()
|
| /third_party/node/deps/v8/src/codegen/ |
| H A D | assembler.cc | 273 int current = static_cast<int>(code_targets_.size()); in AddCodeTarget() local 274 if (current > 0 && !target.is_null() && in AddCodeTarget() 277 return current - 1; in AddCodeTarget() 280 return current; in AddCodeTarget() 291 EmbeddedObjectIndex current = embedded_objects_.size(); in AddEmbeddedObject() local 298 embedded_objects_map_[object] = current; in AddEmbeddedObject() 301 return current; in AddEmbeddedObject()
|
| /third_party/node/deps/v8/src/base/ |
| H A D | threaded-list.h | 113 T* current = first(); in Remove() local 114 if (current == v) { in Remove() 119 while (current != nullptr) { in Remove() 120 T* next = *TLTraits::next(current); in Remove() 122 *TLTraits::next(current) = *TLTraits::next(next); in Remove() 126 tail_ = TLTraits::next(current); in Remove() 130 current = next; in Remove()
|
| /third_party/mesa3d/src/gallium/auxiliary/util/ |
| H A D | u_cache.c | 150 struct util_cache_entry *current = &cache->entries[i]; in util_cache_entry_get() local 152 if (current->state == FILLED) { in util_cache_entry_get() 153 if (current->hash == hash && in util_cache_entry_get() 154 cache->compare(key, current->key) == 0) in util_cache_entry_get() 155 return current; in util_cache_entry_get() 159 first_unfilled = current; in util_cache_entry_get() 161 if (current->state == EMPTY) in util_cache_entry_get()
|
| /third_party/skia/src/gpu/v1/ |
| H A D | ClipStack.h | 128 void markInvalid(const SaveRecord& current); 129 void restoreValid(const SaveRecord& current); 143 void updateForElement(RawElement* added, const SaveRecord& current); 148 bool combine(const RawElement& other, const SaveRecord& current); 160 // popped from the stack, and is stable as the current save record is modified. 172 Mask(const SaveRecord& current, const SkIRect& bounds); 183 bool appliesToDraw(const SaveRecord& current, const SkIRect& drawBounds) const; 290 // Will return the current save record, properly updating deferred saves 297 const SaveRecord& current, const SkIRect& bounds,
|
| /third_party/jerryscript/jerry-core/parser/regexp/ |
| H A D | re-parser.c | 38 * Get the start opcode for the current group. 49 * Get the end opcode for the current group. 352 * Count the number of groups in the current pattern. 984 lit_code_point_t current; in re_parse_char_class() local 997 current = LIT_CHAR_BS; in re_parse_char_class() 1003 current = LIT_CHAR_MINUS; in re_parse_char_class() 1012 current = ((uint8_t) *(re_ctx_p->input_curr_p + 1) % 32); in re_parse_char_class() 1026 current = RE_INVALID_CP; in re_parse_char_class() 1031 current = re_ctx_p->token.value; in re_parse_char_class() 1038 current in re_parse_char_class() [all...] |
| /third_party/python/Objects/ |
| H A D | weakrefobject.c | 962 PyWeakReference *current = *list; in PyObject_ClearWeakRefs() local 963 Py_ssize_t count = _PyWeakref_GetWeakrefCount(current); in PyObject_ClearWeakRefs() 968 PyObject *callback = current->wr_callback; in PyObject_ClearWeakRefs() 970 current->wr_callback = NULL; in PyObject_ClearWeakRefs() 971 clear_weakref(current); in PyObject_ClearWeakRefs() 973 if (Py_REFCNT((PyObject *)current) > 0) { in PyObject_ClearWeakRefs() 974 handle_callback(current, callback); in PyObject_ClearWeakRefs() 990 PyWeakReference *next = current->wr_next; in PyObject_ClearWeakRefs() 992 if (Py_REFCNT((PyObject *)current) > 0) { in PyObject_ClearWeakRefs() 993 Py_INCREF(current); in PyObject_ClearWeakRefs() [all...] |
| /third_party/python/Lib/ |
| H A D | pprint.py | 297 current = '' 299 candidate = current + part 303 if current: 304 chunks.append(repr(current)) 305 current = part 307 current = candidate 308 if current: 309 chunks.append(repr(current)) 654 current = b'' 658 candidate = current [all...] |
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ |
| H A D | radeon_uvd_enc_1_1.c | 38 #define RADEON_ENC_CS(value) (enc->cs.current.buf[enc->cs.current.cdw++] = (value)) 41 uint32_t *begin = &enc->cs.current.buf[enc->cs.current.cdw++]; \ 50 *begin = (&enc->cs.current.buf[enc->cs.current.cdw] - begin) * 4; \ 79 enc->cs.current.buf[enc->cs.current.cdw] = 0; in radeon_uvd_enc_output_one_byte() 80 enc->cs.current.buf[enc->cs.current in radeon_uvd_enc_output_one_byte() [all...] |
| /third_party/mesa3d/src/gallium/drivers/d3d12/ |
| H A D | d3d12_compiler.cpp | 100 sel->current = shader; in compile_nir() 440 mode = (enum pipe_prim_type)last_vertex_stage->current->nir->info.gs.output_primitive; in get_provoking_vertex() 462 if (!fs || !fs->current) in has_flat_varyings() 465 nir_foreach_variable_with_modes(input, fs->current->nir, in has_flat_varyings() 579 if (!fs || !fs->current) in fill_flat_varyings() 582 nir_foreach_variable_with_modes(input, fs->current->nir, in fill_flat_varyings() 886 uint64_t mask = prev->current->nir->info.outputs_written & ~system_out_values; in d3d12_fill_shader_key() 887 fill_varyings(&key->required_varying_inputs, prev->current->nir, in d3d12_fill_shader_key() 889 key->prev_varying_outputs = prev->current->nir->info.outputs_written; in d3d12_fill_shader_key() 892 uint32_t patch_mask = prev->current in d3d12_fill_shader_key() 1235 get_prev_shader(struct d3d12_context *ctx, pipe_shader_type current) get_prev_shader() argument 1260 get_next_shader(struct d3d12_context *ctx, pipe_shader_type current) get_next_shader() argument [all...] |
| /third_party/alsa-lib/src/ |
| H A D | conf.c | 376 values in the current compound are used as configuration for the function. 492 struct filedesc *current; member 639 struct filedesc *current) in input_stdio_open() 653 while (current) { in input_stdio_open() 654 list_for_each(pos, ¤t->include_paths) { in input_stdio_open() 664 current = current->next; in input_stdio_open() 755 fd = input->current; in get_char() 769 input->current = fd->next; in get_char() 820 err = add_include_path(input->current, st in get_char_skip_comments() 638 input_stdio_open(snd_input_t **inputp, const char *file, struct filedesc *current) input_stdio_open() argument [all...] |
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
| H A D | LanguageTag.java | 171 String s = itr.current(); in parse() 194 String s = itr.current(); in parseLanguage() 213 String s = itr.current(); in parseExtlangs() 241 String s = itr.current(); in parseScript() 259 String s = itr.current(); in parseRegion() 278 String s = itr.current(); in parseVariants() 306 String s = itr.current(); in parseExtensions() 314 s = itr.current(); in parseExtensions() 356 String s = itr.current(); in parsePrivateuse() 363 s = itr.current(); in parsePrivateuse() [all...] |
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
| H A D | TrieMap.java | 100 protected int current = 0; field in TrieMap.Matcher 128 return bytesTrie.current().hasValue() ? intToValue[bytesTrie.getValue()] : null; in get() 221 this.current = start; in set() 229 return current; in getEnd() 233 * Finds the next match. Returns false when there are no possible further matches from the current start 234 * point. Once that happens, call nextStart(); Call getValue to get the current value. 239 while (current < text.length()) { in next() 240 char c = text.charAt(current++); in next() 265 current = start; in nextStart() 404 this.current in set() [all...] |
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
| H A D | LanguageTag.java | 216 String s = itr.current(); in parse() 239 String s = itr.current(); in parseLanguage() 258 String s = itr.current(); in parseExtlangs() 286 String s = itr.current(); in parseScript() 304 String s = itr.current(); in parseRegion() 323 String s = itr.current(); in parseVariants() 351 String s = itr.current(); in parseExtensions() 359 s = itr.current(); in parseExtensions() 401 String s = itr.current(); in parsePrivateuse() 408 s = itr.current(); in parsePrivateuse() [all...] |
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
| H A D | TrieMap.java | 99 protected int current = 0; field in TrieMap.Matcher 127 return bytesTrie.current().hasValue() ? intToValue[bytesTrie.getValue()] : null; in get() 220 this.current = start; in set() 228 return current; in getEnd() 232 * Finds the next match. Returns false when there are no possible further matches from the current start 233 * point. Once that happens, call nextStart(); Call getValue to get the current value. 238 while (current < text.length()) { in next() 239 char c = text.charAt(current++); in next() 264 current = start; in nextStart() 403 this.current in set() [all...] |
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | tokenize.c | 316 struct stream *current; in init_stream() local 325 current = input_streams + stream; in init_stream() 326 memset(current, 0, sizeof(*current)); in init_stream() 327 current->name = name; in init_stream() 328 current->fd = fd; in init_stream() 329 current->next_path = next_path; in init_stream() 330 current->path = NULL; in init_stream() 331 current->constant = CONSTANT_FILE_MAYBE; in init_stream() 333 current in init_stream() [all...] |
| /third_party/node/deps/v8/src/bigint/ |
| H A D | bigint.h | 428 // {start == end} would indicate an empty string). Returns the current 498 CharIt FromStringAccumulator::ParsePowerTwo(CharIt current, CharIt end, in ParsePowerTwo() argument 508 digit_t d; // Numeric value of the current character {c}. in ParsePowerTwo() 509 uint32_t c = *current; in ParsePowerTwo() 519 ++current; in ParsePowerTwo() 520 if (current == end) { in ParsePowerTwo() 525 if (!AddPart(part)) return current; in ParsePowerTwo() 530 return current; in ParsePowerTwo() 536 CharIt current = start; in Parse() local 554 digit_t d; // Numeric value of the current characte in Parse() [all...] |
| /foundation/communication/ipc/ipc/native/src/core/source/ |
| H A D | ipc_process_skeleton.cpp | 167 auto current = ProcessSkeleton::GetInstance(); in GetRegistryObject() local 168 if (current == nullptr) { in GetRegistryObject() 172 sptr<IRemoteObject> object = current->GetRegistryObject(); in GetRegistryObject() 176 current->SetRegistryObject(object); in GetRegistryObject() 229 auto current = ProcessSkeleton::GetInstance(); in GetProxyObject() local 230 if (current == nullptr) { in GetProxyObject() 235 if (!current->LockObjectMutex()) { in GetProxyObject() 241 current->UnlockObjectMutex(); in GetProxyObject() 250 current->UnlockObjectMutex(); in GetProxyObject() 254 current in GetProxyObject() 282 auto current = ProcessSkeleton::GetInstance(); SetRegistryObject() local 355 auto current = ProcessSkeleton::GetInstance(); IsContainsObject() local 374 auto current = ProcessSkeleton::GetInstance(); DetachObject() local 391 auto current = ProcessSkeleton::GetInstance(); AttachObject() local 406 auto current = ProcessSkeleton::GetInstance(); QueryObject() local 448 auto current = ProcessSkeleton::GetInstance(); SetIPCProxyLimit() local [all...] |
| /third_party/mesa3d/src/gallium/drivers/r600/ |
| H A D | r600_state_common.c | 831 if (rctx->ps_shader->current->shader.gs_prim_id_input && !rctx->gs_shader) { in r600_shader_selector_key() 833 key->vs.prim_id_out = rctx->ps_shader->current->shader.input[rctx->ps_shader->current->shader.ps_prim_id_input].spi_sid; in r600_shader_selector_key() 917 /* Select the hw shader variant depending on the current state. 918 * (*dirty) is set to 1 if current variant was changed */ 936 if (likely(sel->current && memcmp(&sel->current->key, &key, sizeof(key)) == 0)) { in r600_shader_select() 942 struct r600_pipe_shader *p = sel->current, *c = p->next_variant; in r600_shader_select() 963 sel->current = NULL; in r600_shader_select() 975 shader->next_variant = sel->current; in r600_shader_select() 1648 r600_update_clip_state(struct r600_context *rctx, struct r600_pipe_shader *current) r600_update_clip_state() argument [all...] |