| /third_party/selinux/libsepol/cil/src/ |
| H A D | cil_reset_ast.h | 6 int cil_reset_ast(struct cil_tree_node *current);
|
| H A D | cil_find.h | 37 int cil_find_matching_avrule_in_ast(struct cil_tree_node *current, enum cil_flavor flavor, void *target, struct cil_list *matching, int match_self);
|
| /third_party/node/deps/v8/src/objects/ |
| H A D | js-objects.cc | 575 auto current = PrototypeIterator::GetCurrent<JSReceiver>(it); in GetConstructorHelper() local 578 isolate, receiver, isolate->factory()->to_string_tag_symbol(), current, in GetConstructorHelper() 597 if (!receiver.is_identical_to(current)) { in GetConstructorHelper() 599 isolate, receiver, isolate->factory()->constructor_string(), current, in GetConstructorHelper() 666 JSReceiver current = *receiver; in GetFunctionRealm() local 668 DCHECK(current.map().is_constructor()); in GetFunctionRealm() 669 if (current.IsJSProxy()) { in GetFunctionRealm() 670 JSProxy proxy = JSProxy::cast(current); in GetFunctionRealm() 676 current = JSReceiver::cast(proxy.target()); in GetFunctionRealm() 679 if (current in GetFunctionRealm() 1373 PropertyDescriptor current; OrdinaryDefineOwnProperty() local 1405 IsCompatiblePropertyDescriptor( Isolate* isolate, bool extensible, PropertyDescriptor* desc, PropertyDescriptor* current, Handle<Name> property_name, Maybe<ShouldThrow> should_throw) IsCompatiblePropertyDescriptor() argument 1417 ValidateAndApplyPropertyDescriptor( Isolate* isolate, LookupIterator* it, bool extensible, PropertyDescriptor* desc, PropertyDescriptor* current, Maybe<ShouldThrow> should_throw, Handle<Name> property_name) ValidateAndApplyPropertyDescriptor() argument 4697 Handle<Object> current = PrototypeIterator::GetCurrent(iter); MakePrototypesFast() local [all...] |
| /foundation/arkui/ace_engine/frameworks/core/pipeline_ng/ |
| H A D | pipeline_context.cpp | 387 const std::tuple<float, float, uint64_t>& history, const std::tuple<float, float, uint64_t>& current, in LinearInterpolation() 390 if (nanoTimeStamp == std::get<INDEX_TIME>(history) || nanoTimeStamp == std::get<INDEX_TIME>(current)) { in LinearInterpolation() 393 if (std::get<INDEX_TIME>(current) <= std::get<INDEX_TIME>(history)) { in LinearInterpolation() 396 if (std::get<INDEX_TIME>(current) - std::get<INDEX_TIME>(history) > INTERPOLATION_THRESHOLD) { in LinearInterpolation() 402 auto inputXDeltaSlope = (std::get<INDEX_X>(current) - std::get<INDEX_X>(history)) * ONE_S_IN_NS / in LinearInterpolation() 403 (float)(std::get<INDEX_TIME>(current) - std::get<INDEX_TIME>(history)); in LinearInterpolation() 404 auto inputYDeltaSlope = (std::get<INDEX_Y>(current) - std::get<INDEX_Y>(history)) * ONE_S_IN_NS / in LinearInterpolation() 405 (float)(std::get<INDEX_TIME>(current) - std::get<INDEX_TIME>(history)); in LinearInterpolation() 406 if (nanoTimeStamp < std::get<INDEX_TIME>(current)) { in LinearInterpolation() 408 (float)(std::get<INDEX_TIME>(current) in LinearInterpolation() 386 LinearInterpolation( const std::tuple<float, float, uint64_t>& history, const std::tuple<float, float, uint64_t>& current, const uint64_t nanoTimeStamp) LinearInterpolation() argument 452 GetResampleCoord(const std::vector<TouchEvent>& history, const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen) GetResampleCoord() argument 493 GetResampleTouchEvent(const std::vector<TouchEvent>& history, const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp, TouchEvent& newTouchEvent) GetResampleTouchEvent() argument 523 GetLatestPoint(const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp) GetLatestPoint() argument 547 GetResampleMouseEvent( const std::vector<MouseEvent>& history, const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp) GetResampleMouseEvent() argument 573 GetMouseResampleCoord(const std::vector<MouseEvent>& history, const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen) GetMouseResampleCoord() argument 598 GetMouseLatestPoint(const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp) GetMouseLatestPoint() argument 741 GetResamplePointerEvent(const std::vector<PointerEvent>& history, const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp) GetResamplePointerEvent() argument 757 GetResamplePointerCoord( const std::vector<PointerEvent>& history, const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen) GetResamplePointerCoord() argument 783 GetPointerLatestPoint(const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp) GetPointerLatestPoint() argument [all...] |
| H A D | pipeline_context.h | 1081 const std::tuple<float, float, uint64_t>& current, const uint64_t nanoTimeStamp); 1084 const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen); 1089 const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp, TouchEvent& newTouchEvent); 1091 TouchEvent GetLatestPoint(const std::vector<TouchEvent>& current, const uint64_t nanoTimeStamp); 1094 const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp); 1097 const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen); 1099 PointerEvent GetPointerLatestPoint(const std::vector<PointerEvent>& current, const uint64_t nanoTimeStamp); 1104 const std::vector<MouseEvent>& history, const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp); 1107 const std::vector<MouseEvent>& current, const uint64_t nanoTimeStamp, const bool isScreen); 1109 MouseEvent GetMouseLatestPoint(const std::vector<MouseEvent>& current, cons [all...] |
| /foundation/multimodalinput/input/service/event_resample/test/ |
| H A D | event_resample_test.cpp | 195 InputEvt current; in CalculateExpected() local 221 current.InitializeFrom(touchState[0]); in CalculateExpected() 223 return ResampleCoord(sampleTime, current); in CalculateExpected() 226 int32_t ResampleCoord(int64_t sampleTime, InputEvt ¤t) in ResampleCoord() 264 dispX = CalcCoord(current.dispX, other.dispX, alpha); in ResampleCoord() 265 dispY = CalcCoord(current.dispY, other.dispY, alpha); in ResampleCoord() 845 EventResample::History current; in HWTEST_F() local 860 ASSERT_NO_FATAL_FAILURE(EventResampleHdr->ResampleCoordinates(sampleTime, &event, touchState, ¤t, in HWTEST_F() 876 EventResample::History current; in HWTEST_F() local 891 ASSERT_NO_FATAL_FAILURE(EventResampleHdr->ResampleCoordinates(sampleTime, &event, touchState, ¤t, in HWTEST_F() [all...] |
| /test/testfwk/xdevice/plugins/ohos/src/ohos/parser/ |
| H A D | oh_jsunit_parser.py | 183 test_info.current = self.state_machine.running_test_index 189 test_info.current = self.state_machine.running_test_index 195 test_info.current = self.state_machine.running_test_index 312 test_result.current = \ 347 test_result.current = self.state_machine.running_test_index + 1 517 test_info.current = self.state_machine.running_test_index 523 test_info.current = self.state_machine.running_test_index 529 test_info.current = self.state_machine.running_test_index 676 case.current = \ 694 test_result.current [all...] |
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| H A D | RuleBasedBreakIterator.java | 273 * The iteration state - current position, rule status for the current position, 278 * The current position of the iterator. Pinned, 0 < fPosition <= text.length. 400 * Sets the current iteration position to the beginning of the text. 415 fBreakCache.current(); in first() 421 * Sets the current iteration position to the end of the text. 447 * the current one. 462 result = current(); in next() 479 * Moves the iterator backwards, to the boundary preceding the current one. 493 * @return The position of the first break after the current positio 589 public int current() { current() method in RuleBasedBreakIterator 1414 int current() { current() method in RuleBasedBreakIterator.BreakCache [all...] |
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
| H A D | RuleBasedBreakIterator.java | 229 * The iteration state - current position, rule status for the current position, 234 * The current position of the iterator. Pinned, 0 < fPosition <= text.length. 345 * Sets the current iteration position to the beginning of the text. 359 fBreakCache.current(); in first() 365 * Sets the current iteration position to the end of the text. 390 * the current one. 404 result = current(); in next() 420 * Moves the iterator backwards, to the boundary preceding the current one. 433 * @return The position of the first break after the current positio 524 public int current() { current() method in RuleBasedBreakIterator 1391 int current() { current() method in RuleBasedBreakIterator.BreakCache [all...] |
| /third_party/libsnd/src/ |
| H A D | alac.c | 38 { uint32_t current, count, allocated ; member 371 { if (info->current >= info->count) in alac_reader_next_packet_size() 373 return info->packet_size [info->current++] ; in alac_reader_next_packet_size() 381 plac->pakt_info->current = 0 ; in alac_reader_calc_frames() 398 plac->pakt_info->current = 0 ; in alac_reader_calc_frames() 411 { if (plac->pakt_info->current < plac->pakt_info->count) in alac_decode_block() 412 psf_log_printf (psf, "packet_size is 0 (%d of %d)\n", plac->pakt_info->current, plac->pakt_info->count) ; in alac_decode_block() 607 plac->pakt_info->current = 0 ; in alac_seek() 622 plac->pakt_info->current = newblock ; in alac_seek() 779 info->current in alac_pakt_alloc() [all...] |
| H A D | ms_adpcm.c | 222 int current ; in msadpcm_decode_block() local 306 current = (bytecode * idelta) + predict ; in msadpcm_decode_block() 308 if (current > 32767) in msadpcm_decode_block() 309 current = 32767 ; in msadpcm_decode_block() 310 else if (current < -32768) in msadpcm_decode_block() 311 current = -32768 ; in msadpcm_decode_block() 313 pms->samples [k] = current ; in msadpcm_decode_block()
|
| /third_party/node/deps/v8/src/snapshot/ |
| H A D | deserializer.cc | 910 int current = start_slot_index; in ReadData() local 911 while (current < end_slot_index) { in ReadData() 913 current += ReadSingleBytecodeData( in ReadData() 914 data, SlotAccessorForHeapObject::ForSlotIndex(object, current)); in ReadData() 916 CHECK_EQ(current, end_slot_index); in ReadData() 922 FullMaybeObjectSlot current = start; in ReadData() local 923 while (current < end) { in ReadData() 925 current += ReadSingleBytecodeData(data, SlotAccessorForRootSlots(current)); in ReadData() 927 CHECK_EQ(current, en in ReadData() [all...] |
| /foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/ |
| H A D | node_system.cpp | 383 // Perform lookup using array of names and 'current' index (start from zero). 395 // Perform lookup using array of names and 'current' index (start from zero). 656 auto current = stack.back(); in DisableTree() local 658 if (!current) { in DisableTree() 661 auto* handle = nodeComponentManager.GetData(current->entity_); in DisableTree() 669 stack.append(current->children_.cbegin(), current->children_.cend()); in DisableTree() 680 auto current = stack.back(); in EnableTree() local 682 if (!current) { in EnableTree() 685 auto* childHandle = nodeComponentManager.GetData(current in EnableTree() [all...] |
| /third_party/libuv/test/ |
| H A D | test-tty-escape-sequence-processing.c | 305 int current = 0; in compare_screen() local 319 while (current < actual->si.length) { in compare_screen() 320 if (*(actual->text + current) != *(expect->text + current)) { in compare_screen() 321 line = current / actual->si.width + 1; in compare_screen() 322 col = current - actual->si.width * (line - 1) + 1; in compare_screen() 327 *(expect->text + current), in compare_screen() 328 *(actual->text + current)); in compare_screen() 331 if (*(actual->attributes + current) != *(expect->attributes + current)) { in compare_screen() [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/ |
| H A D | X86Disassembler.cpp | 249 // Go to REX prefix after the current one in readPrefixes() 868 uint8_t current; in readOpcode() local 928 if (consume(insn, current)) in readOpcode() 931 if (current == 0x0f) { in readOpcode() 933 dbgs() << format("Found a two-byte escape prefix (0x%hhx)", current)); in readOpcode() 934 if (consume(insn, current)) in readOpcode() 937 if (current == 0x38) { in readOpcode() 939 current)); in readOpcode() 940 if (consume(insn, current)) in readOpcode() 944 } else if (current in readOpcode() [all...] |
| /foundation/communication/ipc/ipc/native/c/rpc/src/ |
| H A D | dbinder_invoker.c | 323 RPC_LOG_ERROR("current session is invalid"); in SendOrWaitForCompletion() 487 IpcSkeleton *current = GetCurrentSkeleton(); in CreateProcessThread() local 488 if (current == NULL) { in CreateProcessThread() 489 RPC_LOG_ERROR("current ipcskeleton is nullptr"); in CreateProcessThread() 492 if (current->threadPool->idleSocketThreadNum > 0) { in CreateProcessThread() 528 IpcSkeleton *current = GetCurrentSkeleton(); in OnReceiveNewConnection() local 529 if (current == NULL) { in OnReceiveNewConnection() 530 RPC_LOG_ERROR("current ipcskeleton is nullptr"); in OnReceiveNewConnection() 622 // If the current is abnormal, the subsequent is no longer processed. in OnMessageAvailable() 763 IpcSkeleton *current in RpcStopWorkThread() local [all...] |
| /third_party/node/deps/v8/src/torque/ |
| H A D | instructions.cc | 139 auto current = stack->begin(); in InvalidateTransientTypes() local 140 while (current != stack->end()) { in InvalidateTransientTypes() 141 if ((*current)->IsTransient()) { in InvalidateTransientTypes() 143 stream << "type " << **current in InvalidateTransientTypes() 146 *current = TypeOracle::GetTopType(stream.str(), *current); in InvalidateTransientTypes() 148 ++current; in InvalidateTransientTypes()
|
| /third_party/skia/third_party/externals/harfbuzz/src/ |
| H A D | hb-bit-set.hh | 608 const page_map_t ¤t = page_map_array[i]; in next() local 609 if (likely (current.major == major)) in next() 611 if (pages_array[current.index].next (codepoint)) in next() 613 *codepoint += current.major * page_t::PAGE_BITS; in next() 622 const page_map_t ¤t = page_map.arrayZ[i]; in next() local 623 hb_codepoint_t m = pages_array[current.index].get_min (); in next() 626 *codepoint = current.major * page_t::PAGE_BITS + m; in next()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
| H A D | scheduler.cpp | 237 // TODO(chromium:1211047): Testing the static thread_local Worker::current for 240 Scheduler::Fiber* Scheduler::Fiber::current() { in current() function in marl::Scheduler::Fiber 361 thread_local Scheduler::Worker* Scheduler::Worker::current = nullptr; member in marl::Scheduler::Worker 384 Worker::current = this; in start() 392 Worker::current = nullptr; in start() 397 Worker::current = this; in start() member in marl::Worker 418 Worker::current = nullptr; in stop() member in marl::Worker 576 MARL_NAME_THREAD("Thread<%.2d> Fiber<%.2d>", int(id), Fiber::current()->id); in run()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
| H A D | gas_query.c | 66 struct gas_query_pending *current; member 162 if (gas->current == query) in gas_query_done() 163 gas->current = NULL; in gas_query_done() 230 if (gas->current == NULL) { in gas_query_tx_status() 237 query = gas->current; in gas_query_tx_status() 360 if (gas->current != query || query->retry) in gas_query_rx_comeback_timeout() 719 gas->current = query; in gas_query_tx_initial_req()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
| H A D | gas_query.c | 67 struct gas_query_pending *current; member 163 if (gas->current == query) in gas_query_done() 164 gas->current = NULL; in gas_query_done() 231 if (gas->current == NULL) { in gas_query_tx_status() 238 query = gas->current; in gas_query_tx_status() 351 if (gas->current != query || query->retry) in gas_query_rx_comeback_timeout() 713 gas->current = query; in gas_query_tx_initial_req()
|
| /foundation/ability/ability_lite/services/abilitymgr_lite/src/ |
| H A D | ability_mission_record.cpp | 103 PageAbilityRecord *AbilityMissionRecord::GetPrevPageAbility(const PageAbilityRecord ¤t) const
in GetPrevPageAbility() 107 if (record != nullptr && record->IsSamePageAbility(current)) {
in GetPrevPageAbility() 137 // remove from current to top of stack
in RemovePageAbility()
|
| /foundation/arkui/ace_engine/frameworks/core/components/picker/ |
| H A D | picker_date_component.h | 138 void SolarColumnsBuilding(const PickerDate& current); 140 void LunarColumnsBuilding(const LunarDate& current);
|
| /foundation/arkui/ace_engine/frameworks/core/components_ng/manager/focus/ |
| H A D | focus_manager.h | 33 using FocusChangeCallback = std::function<void(const WeakPtr<FocusHub>& last, const RefPtr<FocusHub>& current)>; 123 void UpdateCurrentFocus(const RefPtr<FocusHub>& current, SwitchingUpdateReason reason);
|
| /foundation/arkui/ace_engine/frameworks/core/animation/ |
| H A D | shared_transition_effect.h | 68 void setCurrentSharedElement(const WeakPtr<SharedTransitionElement>& current) in setCurrentSharedElement() argument 70 currentWorking_ = current; in setCurrentSharedElement()
|