| /third_party/skia/third_party/externals/icu/source/common/ |
| H A D | rbbi_cache.h | 112 * current state of the break iterator cache (this). 114 int32_t current(); 134 * Add boundary(s) to the cache following the current last boundary. 153 * Add the boundary following the current position. 154 * The current position can be left as it was, or changed to the newly added boundary, 161 * Add the boundary preceding the current position. 162 * The current position can be left as it was, or changed to the newly added boundary,
|
| H A D | rbbi.cpp | 298 // the assumption that the current position is on a rule boundary. in operator =() 468 * the current iteration position to the beginning of the text. 495 * the current iteration position to the beginning of the text. 554 * Sets the current iteration position to the beginning of the text, position zero. 562 fBreakCache->current(); in first() 568 * Sets the current iteration position to the end of the text. 587 * the current one. 600 result = current(); in next() 615 * Move the iterator backwards, to the boundary preceding the current one. 617 * Starts from the current positio 719 int32_t RuleBasedBreakIterator::current(void) const { current() function in RuleBasedBreakIterator [all...] |
| /third_party/skia/third_party/externals/icu/source/common/unicode/ |
| H A D | chariter.h | 56 * <p>next32PostInc() assumes that the current position is that of 60 * iteration loop should not be mixed. In UTF-16, if the current position 148 * Gets the current code unit for returning and advances to the next code unit 152 * @return the current code unit. 158 * Gets the current code point for returning and advances to the next code point 162 * @return the current code point. 169 * at or after the current position in the iteration range. 173 * at or after the current position in the iteration range. 211 * <li>There are new functions for setting and moving the current position 476 * The current positio [all...] |
| H A D | uiter.h | 61 * when moving relative to the current index after a setState() 62 * when the current UTF-16 index is not known. 65 * just to get the current/limit/length index after moving relative to it. 91 * Gets the current position, or the start or limit of the 99 * @param origin get the 0, start, limit, length, or current index 114 * Moves the current position relative to the start or limit of the 115 * iteration range, or relative to the current position itself. 125 * relative to the current position after setState() was called, 134 * @param origin move relative to the 0, start, limit, length, or current index 149 * Check if current() an 427 UCharIteratorCurrent *current; global() member [all...] |
| /third_party/python/PCbuild/ |
| H A D | env.bat | 2 rem This script adds the latest available tools to the path for the current
|
| /device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/linux/mmz/ |
| H A D | mmz_userdev.c | 152 pmu->pid = current->pid; in mmz_userdev_open() 387 pmu->mmap_pid = current->pid; in ioctl_mmb_user_remap() 460 struct mm_struct *mm = current->mm; 772 struct mm_struct *mm = current->mm;
|
| H A D | media_mem.c | 673 pgd = pgd_offset(current->mm, virt); 1013 pvma1 = find_vma(current->mm, vm_start); 1019 pvma2 = find_vma(current->mm, vm_end - 1); 1071 struct mm_struct *mm = current->mm;
|
| /device/soc/rockchip/common/sdk_linux/kernel/cgroup/ |
| H A D | cgroup-v1.c | 295 struct pid_namespace *ns = task_active_pid_ns(current); in cgroup_pidlist_find() 329 l->key.ns = get_pid_ns(task_active_pid_ns(current)); in cgroup_pidlist_find_create() 1128 pr_warn("option changes via remount are deprecated (pid=%d comm=%s)\n", task_tgid_nr(current), current->comm);
|
| /foundation/arkui/ace_engine/test/unittest/core/accessibility/ |
| H A D | native_interface_accessibility_test.cpp | 191 auto current = ++index; in BuildNativeAccessibilityElementInfoPart() local 192 ArkUI_AccessibleRangeInfo rangeInfo {min, max, current}; in BuildNativeAccessibilityElementInfoPart() 276 EXPECT_EQ(beforeInfo.GetRangeInfo().current, in CheckTransformElementInfoResultPart() 277 afterInfo.GetRangeInfo().current); in CheckTransformElementInfoResultPart()
|
| /foundation/communication/ipc/ipc/native/test/unittest/common/ |
| H A D | ipc_core_unittest.cpp | 328 IPCThreadSkeleton *current = IPCThreadSkeleton::GetCurrent(); in HWTEST_F() local 329 current->invokers_[IRemoteObject::IF_PROT_BINDER] = invoker; in HWTEST_F() 333 std::fill(current->invokers_, current->invokers_ + IPCThreadSkeleton::INVOKER_MAX_COUNT, nullptr); in HWTEST_F()
|
| /foundation/distributeddatamgr/pasteboard/services/dfx/src/ |
| H A D | hiview_adapter.cpp | 458 time_t current = time(nullptr); in StartTimerThread() 459 if (current == -1) { in StartTimerThread() 465 tm *result = localtime_r(¤t, &localTime); in StartTimerThread() 487 current = time(nullptr); in StartTimerThread()
|
| /third_party/icu/icu4c/source/common/ |
| H A D | rbbi.cpp | 311 // the assumption that the current position is on a rule boundary. in operator =() 482 * the current iteration position to the beginning of the text. 509 * the current iteration position to the beginning of the text. 568 * Sets the current iteration position to the beginning of the text, position zero. 576 fBreakCache->current(); in first() 582 * Sets the current iteration position to the end of the text. 601 * the current one. 614 result = current(); in next() 629 * Move the iterator backwards, to the boundary preceding the current one. 631 * Starts from the current positio 733 int32_t RuleBasedBreakIterator::current(void) const { current() function in RuleBasedBreakIterator [all...] |
| /third_party/libsnd/src/ |
| H A D | w64.c | 440 { sf_count_t fmt_size, current ; in w64_write_header() local 444 current = psf_ftell (psf) ; in w64_write_header() 457 /* Reset the current header length to zero. */ in w64_write_header() 626 if (current > 0) in w64_write_header() 627 psf_fseek (psf, current, SEEK_SET) ; in w64_write_header()
|
| /third_party/libdrm/amdgpu/ |
| H A D | amdgpu_cs.c | 417 struct timespec current; in amdgpu_cs_calculate_timeout() local 419 r = clock_gettime(CLOCK_MONOTONIC, ¤t); in amdgpu_cs_calculate_timeout() 425 current_ns = ((uint64_t)current.tv_sec) * 1000000000ull; in amdgpu_cs_calculate_timeout() 426 current_ns += current.tv_nsec; in amdgpu_cs_calculate_timeout()
|
| /third_party/ntfs-3g/ntfsprogs/ |
| H A D | ntfscmp.c | 277 static void progress_update(struct progress_bar *p, u64 current) in progress_update() argument 287 percent = p->unit * current; in progress_update() 288 if (current != p->stop) { in progress_update() 289 if ((current - p->start) % p->resolution) in progress_update()
|
| /third_party/node/deps/icu-small/source/common/ |
| H A D | rbbi.cpp | 333 // the assumption that the current position is on a rule boundary. in operator =() 452 * the current iteration position to the beginning of the text. 479 * the current iteration position to the beginning of the text. 538 * Sets the current iteration position to the beginning of the text, position zero. 546 fBreakCache->current(); in first() 552 * Sets the current iteration position to the end of the text. 571 * the current one. 584 result = current(); in next() 599 * Move the iterator backwards, to the boundary preceding the current one. 601 * Starts from the current positio 703 int32_t RuleBasedBreakIterator::current() const { current() function in RuleBasedBreakIterator [all...] |
| /third_party/node/deps/v8/src/builtins/ |
| H A D | builtins-call-gen.cc | 590 // Load the constructor field from the current map (in the in GetCompatibleReceiver() 642 TNode<HeapObject> current = var_template.value(); in GetCompatibleReceiver() local 643 GotoIf(TaggedEqual(current, signature), &holder_found); in GetCompatibleReceiver() 645 GotoIfNot(IsFunctionTemplateInfoMap(LoadMap(current)), &holder_next); in GetCompatibleReceiver() 648 current, FunctionTemplateInfo::kRareDataOffset); in GetCompatibleReceiver() 683 // to perform access checks in the current {context}, depending in CallFunctionTemplate()
|
| /third_party/node/deps/v8/src/heap/ |
| H A D | read-only-spaces.cc | 503 for (MaybeObjectSlot current = start; current < end; ++current) { 505 if ((*current)->GetHeapObject(&heap_object)) {
|
| /third_party/pulseaudio/src/pulse/ |
| H A D | volume.c | 79 /* Clamp in case there is stale data that exceeds the current in pa_cvolume_set() 374 char *current = s; in pa_cvolume_snprint_verbose() local 391 current[0] = 0; in pa_cvolume_snprint_verbose() 403 bytes_printed = pa_snprintf(current, l, "%s%s: %s", in pa_cvolume_snprint_verbose() 408 current += bytes_printed; in pa_cvolume_snprint_verbose()
|
| /third_party/python/Lib/ |
| H A D | threading.py | 501 A bounded semaphore checks to make sure its current value doesn't exceed its 1072 "Remove current thread from the dict of currently running threads." 1098 join() raises a RuntimeError if an attempt is made to join the current 1109 raise RuntimeError("cannot join current thread") 1447 """Return the current Thread object, corresponding to the caller's thread of control. 1459 """Return the current Thread object, corresponding to the caller's thread of control. 1617 # fork() only copied the current thread; clear references to others. 1621 current = _active[get_ident()] 1626 current = _MainThread() 1628 _main_thread = current [all...] |
| /third_party/node/deps/v8/src/objects/ |
| H A D | objects.cc | 4195 // Perform compaction in the current array. in Append() 4610 Relocatable* current = isolate->relocatable_top(); in PostGarbageCollectionProcessing() local 4611 while (current != nullptr) { in PostGarbageCollectionProcessing() 4612 current->PostGarbageCollection(); in PostGarbageCollectionProcessing() 4613 current = current->prev_; in PostGarbageCollectionProcessing() 4644 Relocatable* current = top; in Iterate() local 4645 while (current != nullptr) { in Iterate() 4646 current->IterateInstance(v); in Iterate() 4647 current in Iterate() 5266 Object current = boilerplate().GetHeap()->allocation_sites_list(); IsNested() local 5587 Object current = *reactions; TriggerPromiseReactions() local [all...] |
| /device/soc/rockchip/rk3588/kernel/drivers/video/rockchip/rga3/ |
| H A D | rga_job.c | 109 mmgrab(current->mm); in rga_job_get_current_mm() 110 mmget(current->mm); in rga_job_get_current_mm() 111 job->mm = current->mm; in rga_job_get_current_mm()
|
| /foundation/arkui/ace_engine/interfaces/native/node/ |
| H A D | gesture_impl.cpp | 55 ArkUIGestureRecognizer* current = nullptr; member 341 return reinterpret_cast<ArkUI_GestureRecognizer*>(event->current); in OH_ArkUI_ParallelInnerGestureEvent_GetCurrentRecognizer() 586 reinterpret_cast<ArkUIGestureRecognizer* (*)(ArkUIParallelInnerGestureEvent * current)>(parallelInnerGesture); in SetInnerGestureParallelTo()
|
| /third_party/ffmpeg/libavcodec/x86/ |
| H A D | lossless_videodsp.asm | 342 mova m4, [srcq + widthq] ; current val (src[x]) 356 ; prefix sum current val 367 paddb m2, m4 ; current + (A - B)
|
| /third_party/glfw/src/ |
| H A D | x11_monitor.c | 226 // Set the current video mode for the specified monitor 232 GLFWvidmode current; in _glfwSetVideoModeX11() local 236 _glfwGetVideoModeX11(monitor, ¤t); in _glfwSetVideoModeX11() 237 if (_glfwCompareVideoModes(¤t, best) == 0) in _glfwSetVideoModeX11() 579 "X11: Gamma ramp size must match current ramp size"); in _glfwSetGammaRampX11()
|