Home
last modified time | relevance | path

Searched refs:current (Results 101 - 125 of 1746) sorted by relevance

12345678910>>...70

/third_party/mesa3d/src/gallium/frontends/nine/
H A Dnine_shader.h260 struct nine_shader_constant_combination **next_allocate = list, *current = *list; in nine_shader_constant_combination_key() local
267 while (current) { in nine_shader_constant_combination_key()
272 match &= !memcmp(const_i + 4*i, current->const_i[i], sizeof(current->const_i[0])); in nine_shader_constant_combination_key()
276 match &= const_b[i] == current->const_b[i]; in nine_shader_constant_combination_key()
280 next_allocate = &current->next; in nine_shader_constant_combination_key()
281 current = current->next; in nine_shader_constant_combination_key()
286 current = *next_allocate; in nine_shader_constant_combination_key()
288 current in nine_shader_constant_combination_key()
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DCodedInputStream.php43 private $current; variable
62 $this->current = $start; variable
73 $this->current += $amount;
78 return $this->buffer_end - $this->current;
81 public function current() function
84 ($this->buffer_end - $this->current +
98 // The limit position is in the current buffer. We must adjust the
157 if ($this->current === $this->buffer_end) {
163 $b = ord($this->buffer[$this->current]);
188 if ($this->current
[all...]
H A DCodedOutputStream.php40 private $current; variable
46 $this->current = 0; variable
97 $this->buffer[$this->current] = $data[$i];
98 $this->current++;
106 $current = 0; variable
117 $buffer[$current] = chr($low | 0x80);
122 $current++;
124 $buffer[$current] = chr($low);
125 return $current + 1;
/foundation/multimedia/audio_framework/services/audio_service/common/src/
H A Dfutex_tool.cpp50 uint32_t current = futexPtr->load(); in FutexWait() local
51 if (current != IS_READY && current != IS_NOT_READY && current != IS_PRE_EXIT) { in FutexWait()
52 AUDIO_ERR_LOG("failed: invalid param:%{public}u", current); in FutexWait()
100 uint32_t current = futexPtr->load(); in FutexWake() local
101 if (current != IS_READY && current != IS_NOT_READY && current != IS_PRE_EXIT) { in FutexWake()
102 AUDIO_ERR_LOG("failed: invalid param:%{public}u", current); in FutexWake()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/
H A DDictionaryBreakEngine.java31 private int current; // The candidate we're currently looking at field in DictionaryBreakEngine.PossibleWord
54 current = count[0] - 1; in candidates()
55 mark = current; in candidates()
65 // Backup from the current candidate to the next shorter one; return true if that exists
68 if (current > 0) { in backUp()
69 fIter.setIndex(offset + lengths[--current]); in backUp()
80 // Mark the current candidate as the one we like
82 mark = current; in markCurrent()
190 // The span to break begins at the current position int the text, and in findBreaks()
194 int current; in findBreaks()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DDictionaryBreakEngine.java31 private int current; // The candidate we're currently looking at field in DictionaryBreakEngine.PossibleWord
54 current = count[0] - 1; in candidates()
55 mark = current; in candidates()
65 // Backup from the current candidate to the next shorter one; return true if that exists
68 if (current > 0) { in backUp()
69 fIter.setIndex(offset + lengths[--current]); in backUp()
80 // Mark the current candidate as the one we like
82 mark = current; in markCurrent()
190 // The span to break begins at the current position int the text, and in findBreaks()
194 int current; in findBreaks()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/select_overlay/
H A Dselect_overlay_manager.cpp24 auto current = selectOverlayItem_.Upgrade(); in CreateAndShowSelectOverlay() local
35 if (current) { in CreateAndShowSelectOverlay()
37 auto proxy = MakeRefPtr<SelectOverlayProxy>(current->GetId()); in CreateAndShowSelectOverlay()
45 DestroySelectOverlay(current->GetId()); in CreateAndShowSelectOverlay()
137 auto current = selectOverlayItem_.Upgrade(); in DestroySelectOverlay() local
138 if (current && (current->GetId() == overlayId)) { in DestroySelectOverlay()
139 DestroyHelper(current, animation); in DestroySelectOverlay()
145 auto current = selectOverlayItem_.Upgrade(); in DestroySelectOverlay() local
146 if (current) { in DestroySelectOverlay()
212 auto current = selectOverlayItem_.Upgrade(); HasSelectOverlay() local
223 auto current = selectOverlayItem_.Upgrade(); IsInSelectedOrSelectOverlayArea() local
246 auto current = selectOverlayItem_.Upgrade(); GetSelectOverlayNode() local
370 auto current = selectOverlayItem_.Upgrade(); NotifyOverlayClosed() local
[all...]
/foundation/communication/ipc/ipc/native/src/mock/include/
H A Ddbinder_base_invoker_object.h47 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); in TranslateHandleType() local
48 if (current == nullptr) { in TranslateHandleType()
228 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); in GetUniqueSeqNumber() local
229 if (current == nullptr) { in GetUniqueSeqNumber()
235 return current->GetSeqNumber(); in GetUniqueSeqNumber()
269 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); in TranslateRawData() local
270 if (current == nullptr) { in TranslateRawData()
274 std::shared_ptr<InvokerRawData> receivedRawData = current->QueryRawData(socketId); in TranslateRawData()
281 current->DetachRawData(socketId); in TranslateRawData()
411 IPCProcessSkeleton *current in WaitForReply() local
444 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); StartProcessLoop() local
495 IPCProcessSkeleton *current = IPCProcessSkeleton::GetCurrent(); MakeRemoteHandle() local
[all...]
/third_party/node/deps/v8/src/zone/
H A Dzone-chunk-list.h249 ZoneChunkListIterator(Chunk* current, size_t position) in ZoneChunkListIterator() argument
250 : current_(current), position_(position) { in ZoneChunkListIterator()
251 DCHECK(current == nullptr || position < current->capacity_); in ZoneChunkListIterator()
348 Chunk* current = front_; in SeekIndex() local
349 while (index >= current->capacity_) { in SeekIndex()
350 index -= current->capacity_; in SeekIndex()
351 current = current->next_; in SeekIndex()
353 DCHECK_LT(index, current in SeekIndex()
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/
H A Dwifi_hdi_wpa_proxy.c98 struct IfaceNameInfo* current = g_IfaceNameInfoHead; in FindifaceName() local
99 while (current != NULL) { in FindifaceName()
100 if (strncmp(current->ifName, ifName, strlen(ifName)) == 0) { in FindifaceName()
104 current = current->next; in FindifaceName()
118 struct IfaceNameInfo* current = g_IfaceNameInfoHead; in AddIfaceName() local
119 while (current != NULL) { in AddIfaceName()
120 pre = current; in AddIfaceName()
121 current = current in AddIfaceName()
157 struct IfaceNameInfo* current = g_IfaceNameInfoHead; RemoveIfaceName() local
[all...]
/third_party/node/deps/v8/src/parsing/
H A Dscanner.h155 // case (seeking within the current buffer), and we should only get here in ReadBlockChecked()
189 // Fields describing the location of the current buffer physically in memory,
287 // Returns the current token again.
288 Token::Value current_token() const { return current().token; } in current_token()
290 // Returns the location information for the current token
292 const Location& location() const { return current().location; } in location()
300 return current().invalid_template_escape_message != MessageTemplate::kNone; in has_invalid_template_escape()
304 return current().invalid_template_escape_message; in invalid_template_escape_message()
314 return current().invalid_template_escape_location; in invalid_template_escape_location()
325 return LiteralContainsEscapes(current()); in literal_contains_escapes()
716 const TokenDesc& current() const { return *current_; } current() function in v8::internal::Scanner
[all...]
/foundation/resourceschedule/ffrt/benchmarks/speedup/
H A Dplot.py37 current = pandas.read_csv(current_data, delim_whitespace=True)
38 min_duration = get_speedup_1_duration(current)
40 plt.plot(current['duration'], current['speedup'],
66 current = pandas.read_csv(current_data, delim_whitespace=True)
67 current_min_duration = get_speedup_1_duration(current)
69 plt.plot(current['duration'], current['speedup'],
/third_party/libphonenumber/cpp/src/phonenumbers/geocoding/
H A Darea_code_map.cc77 int current = 0; in BinarySearch() local
79 current = (start + end) / 2; in BinarySearch()
80 int32 current_value = storage_->GetPrefix(current); in BinarySearch()
82 return current; in BinarySearch()
84 --current; in BinarySearch()
85 end = current; in BinarySearch()
87 start = current + 1; in BinarySearch()
90 return current; in BinarySearch()
/third_party/vixl/src/
H A Dpool-manager-impl.h59 // alignment_. This is to support the current AARCH32 MacroAssembler which in Emit()
61 // aligned to the alignment instructions need for the current instruction in Emit()
83 PoolObject<T>& current = *iter; in Emit() local
84 if (ShouldSkipObject(&current, in Emit()
93 LocationBase<T>* label_base = current.label_base_; in Emit()
94 T aligned_pc = AlignUp(pc, current.alignment_); in Emit()
97 VIXL_ASSERT(pc >= current.min_location_); in Emit()
98 VIXL_ASSERT(pc <= current.max_location_); in Emit()
108 VIXL_ASSERT(!current.label_base_->ShouldDeletePoolObjectOnPlacement()); in Emit()
109 current in Emit()
269 const PoolObject<T>& current = objects_[i]; MustEmit() local
323 PoolObject<T>& current = objects_[i]; RecalculateCheckpoint() local
398 PoolObject<T>& current = *iter; Insert() local
413 PoolObject<T>& current = *iter; RemoveAndDelete() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/svg/
H A Drosen_render_svg_tspan.cpp36 double offsetX = hasX_ ? (drawOffset.svg.GetX() + x + dx) : (drawOffset.current.GetX() + dx); in UpdateDrawOffset()
37 double offsetY = hasY_ ? (drawOffset.svg.GetY() + y + dy) : (drawOffset.current.GetY() + dy); in UpdateDrawOffset()
38 drawOffset.current = Offset(offsetX, offsetY); in UpdateDrawOffset()
54 pathOffset.current = pathOffset.start + x + dx; in UpdatePathOffset()
56 if (pathOffset.current != pathOffset.start) { in UpdatePathOffset()
62 pathOffset.current += dx; in UpdatePathOffset()
90 pathOffset.current = OnDrawTextPath(context, pathOffset); in DrawTextPath()
116 pathOffset.current = OnMeasureTextPathBounds(pathOffset, bounds); in MeasureTextPathBounds()
132 double offset = pathOffset.current; in OnDrawTextPath()
140 PathDrawInfo pathDrawInfo = { pathOffset.path, pathOffset.current, rotate in OnDrawTextPath()
[all...]
/foundation/communication/ipc/ipc/native/c/rpc/ipc_adapter/small/
H A Dipc_stub_inner.c40 RpcSkeleton *current = GetCurrentRpcSkeleton(); in MakeStubCached() local
41 if (current == NULL) { in MakeStubCached()
88 RpcSkeleton *current = GetCurrentRpcSkeleton(); in InvokerDataBusThread() local
89 if (current == NULL) { in InvokerDataBusThread()
97 if (current->sessionName != NULL) { in InvokerDataBusThread()
98 free(current->sessionName); in InvokerDataBusThread()
99 current->sessionName = NULL; in InvokerDataBusThread()
105 current->sessionName = (char *)malloc(sessionNameLen + 1); in InvokerDataBusThread()
106 if (current->sessionName == NULL) { in InvokerDataBusThread()
109 if (strcpy_s(current in InvokerDataBusThread()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dscreenpresso.c49 AVFrame *current; member
60 av_frame_free(&ctx->current); in screenpresso_close()
78 /* Allocate current frame */ in screenpresso_init()
79 ctx->current = av_frame_alloc(); in screenpresso_init()
80 if (!ctx->current) in screenpresso_init()
149 ret = ff_reget_buffer(avctx, ctx->current, 0); in screenpresso_decode_frame()
158 av_image_copy_plane(ctx->current->data[0] + in screenpresso_decode_frame()
159 ctx->current->linesize[0] * (avctx->height - 1), in screenpresso_decode_frame()
160 -1 * ctx->current->linesize[0], in screenpresso_decode_frame()
163 /* Otherwise sum the delta on top of the current fram in screenpresso_decode_frame()
[all...]
/third_party/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_transfer_queue.c38 struct virgl_transfer *current; member
42 struct virgl_transfer *current);
52 struct virgl_transfer *current; member
156 struct virgl_transfer *current) in transfers_intersect()
158 return transfer_overlap(queued, current->hw_res, current->base.level, in transfers_intersect()
159 &current->base.box, true); in transfers_intersect()
172 struct virgl_transfer *current = args->current; in replace_unmapped_transfer() local
175 u_box_union_2d(&current in replace_unmapped_transfer()
155 transfers_intersect(struct virgl_transfer *queued, struct virgl_transfer *current) transfers_intersect() argument
[all...]
/third_party/node/deps/v8/src/torque/
H A Dutils.cc259 char current = camellified_string[index]; in CapifyStringWithUnderscores() local
260 if ((previousWasLowerOrDigit && isupper(current)) || in CapifyStringWithUnderscores()
265 if (current == '.' || current == '-') { in CapifyStringWithUnderscores()
270 result += toupper(current); in CapifyStringWithUnderscores()
271 previousWasLowerOrDigit = islower(current) || isdigit(current); in CapifyStringWithUnderscores()
279 for (auto current : underscore_string) { in CamelifyString()
280 if (current == '_' || current in CamelifyString()
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_fence.c114 if (screen->fence.current) { in nouveau_fence_cleanup()
115 struct nouveau_fence *current = NULL; in nouveau_fence_cleanup() local
117 /* nouveau_fence_wait will create a new current fence, so wait on the in nouveau_fence_cleanup()
120 nouveau_fence_ref(screen->fence.current, &current); in nouveau_fence_cleanup()
121 nouveau_fence_wait(current, NULL); in nouveau_fence_cleanup()
122 nouveau_fence_ref(NULL, &current); in nouveau_fence_cleanup()
123 nouveau_fence_ref(NULL, &screen->fence.current); in nouveau_fence_cleanup()
194 * current fence. So check again. in nouveau_fence_kick()
204 if (fence == screen->fence.current) in nouveau_fence_kick()
[all...]
/test/xts/acts/ability/ability_runtime/capichildprocess/entry/src/main/cpp/
H A Dnative_child_demo.cpp40 NativeChildProcess_Fd *current = args.fdList.head; in Main() local
41 if (current != nullptr) { in Main()
42 auto fdName = current->fdName; in Main()
43 auto fd = current->fd; in Main()
50 current = current->next; in Main()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_barriers.c41 nir_intrinsic_instr *current = nir_instr_as_intrinsic(instr); in nir_opt_combine_memory_barriers_impl() local
42 if (current->intrinsic != nir_intrinsic_scoped_barrier || in nir_opt_combine_memory_barriers_impl()
43 nir_intrinsic_execution_scope(current) != NIR_SCOPE_NONE) { in nir_opt_combine_memory_barriers_impl()
48 if (prev && combine_cb(prev, current, data)) { in nir_opt_combine_memory_barriers_impl()
49 nir_instr_remove(&current->instr); in nir_opt_combine_memory_barriers_impl()
52 prev = current; in nir_opt_combine_memory_barriers_impl()
/third_party/icu/vendor/double-conversion/upstream/test/cctest/
H A Dcctest.cc72 static void PrintTestList(CcTest* current) { in PrintTestList() argument
73 if (current == NULL) return; in PrintTestList()
74 PrintTestList(current->prev()); in PrintTestList()
75 if (current->dependency() != NULL) { in PrintTestList()
77 current->file(), current->name(), current->dependency()); in PrintTestList()
79 printf("%s/%s<\n", current->file(), current->name()); in PrintTestList()
/third_party/python/Lib/distutils/
H A Dconfig.py74 current = {'server': server}
75 current['username'] = config.get(server, 'username')
83 current[key] = config.get(server, key)
85 current[key] = default
92 current['repository'] = self.DEFAULT_REPOSITORY
93 return current
95 if (current['server'] == repository or
96 current['repository'] == repository):
97 return current
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc107 current = std::find(beginning, end, true); in CompareCMapIterAndBitSet() local
108 for (int32_t next_bit = current - beginning; in CompareCMapIterAndBitSet()
109 character_iterator->HasNext() && current != end; in CompareCMapIterAndBitSet()
110 next_bit = current - init_beginning) { in CompareCMapIterAndBitSet()
112 EXPECT_TRUE(c <= next_bit || current == end); in CompareCMapIterAndBitSet()
113 if (!(c <= next_bit || current == end)) in CompareCMapIterAndBitSet()
116 beginning = current + 1; in CompareCMapIterAndBitSet()
117 current = std::find(beginning, end, true); in CompareCMapIterAndBitSet()
122 EXPECT_EQ(end, current); in CompareCMapIterAndBitSet()

Completed in 14 milliseconds

12345678910>>...70