Home
last modified time | relevance | path

Searched refs:start (Results 6801 - 6825 of 8320) sorted by relevance

1...<<271272273274275276277278279280>>...333

/third_party/python/Lib/test/test_asyncio/
H A Dfunctional.py165 self.start()
/third_party/protobuf/src/google/protobuf/
H A Dunknown_field_set.h149 // Delete fields with indices in the range [start .. start+num-1].
150 // Caution: implementation moves all fields with indices [start+num .. ].
151 void DeleteSubrange(int start, int num);
/third_party/python/Lib/test/
H A Dtest_largefile.py219 self.thread.start()
/third_party/skia/modules/skshaper/include/
H A DSkShaper.h119 size_t start; // Offset to the start (utf8) element of the run. member
/third_party/skia/modules/skparagraph/src/
H A DTextTabAlign.cpp80 TEXT_LOGD("tabCluster(%zu, %zu) expend %f", fTabCluster->textRange().start, fTabCluster->textRange().end, width); in expendTabCluster()
/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dvisitor.rs34 fn start(&mut self) {} in start() functions
214 visitor.start(); in visit()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_nl80211.h286 int wpa_driver_set_p2p_noa(void *priv, u8 count, int start, int duration);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius.h319 size_t *len, const u8 *start);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
H A Dwps-ap-nfc.py263 srv.start()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_nl80211.h349 int wpa_driver_set_p2p_noa(void *priv, u8 count, int start, int duration);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius.h322 size_t *len, const u8 *start);
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dwps-ap-nfc.py263 srv.start()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dieee802_11_common.h154 ParseRes ieee802_11_parse_elems(const u8 *start, size_t len,
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dframe_node.cpp299 void SetActiveChildRange(int32_t start, int32_t end, int32_t cacheStart, int32_t cacheEnd) in SetActiveChildRange() argument
303 if ((start <= end && index >= start && index <= end) || (start > end && (index <= end || start <= index))) { in SetActiveChildRange()
311 child.node->DoSetActiveChildRange(start - child.startIndex, end - child.startIndex, cacheStart, cacheEnd); in SetActiveChildRange()
336 child.node->DoSetActiveChildRange(activeChildRange->start - child.startIndex, in SetActiveChildRange()
342 void RecycleItemsByIndex(uint32_t start, uint32_t end) in RecycleItemsByIndex() argument
345 if (it->first >= start && it->first < end) { in RecycleItemsByIndex()
785 DumpLog::GetInstance().AddDesc("------------start prin in DumpDragInfo()
4450 SetActiveChildRange(int32_t start, int32_t end, int32_t cacheStart, int32_t cacheEnd, bool showCached) SetActiveChildRange() argument
4466 RecycleItemsByIndex(int32_t start, int32_t end) RecycleItemsByIndex() argument
4599 DoSetActiveChildRange(int32_t start, int32_t end, int32_t cacheStart, int32_t cacheEnd) DoSetActiveChildRange() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_state.c2191 unsigned start, unsigned count, in iris_bind_sampler_states()
2198 assert(start + count <= IRIS_MAX_TEXTURE_SAMPLERS); in iris_bind_sampler_states()
2204 if (shs->samplers[start + i] != state) { in iris_bind_sampler_states()
2205 shs->samplers[start + i] = state; in iris_bind_sampler_states()
2970 unsigned start, unsigned count, in iris_set_sampler_views()
2983 ~u_bit_consecutive(start, count + unbind_num_trailing_slots); in iris_set_sampler_views()
2990 if (is_sampler_view_3d(shs->textures[start + i]) != in iris_set_sampler_views()
2997 &shs->textures[start + i], NULL); in iris_set_sampler_views()
2998 shs->textures[start + i] = (struct iris_sampler_view *)pview; in iris_set_sampler_views()
3001 &shs->textures[start in iris_set_sampler_views()
2189 iris_bind_sampler_states(struct pipe_context *ctx, enum pipe_shader_type p_stage, unsigned start, unsigned count, void **states) iris_bind_sampler_states() argument
2968 iris_set_sampler_views(struct pipe_context *ctx, enum pipe_shader_type p_stage, unsigned start, unsigned count, unsigned unbind_num_trailing_slots, bool take_ownership, struct pipe_sampler_view **views) iris_set_sampler_views() argument
3025 iris_set_compute_resources(struct pipe_context *ctx, unsigned start, unsigned count, struct pipe_surface **resources) iris_set_compute_resources() argument
[all...]
/third_party/python/Python/
H A Dceval.c1572 the start of each executed line of code. in trace_function_entry()
5461 PyObject *start, *stop, *step, *slice; local
5467 start = TOP();
5468 slice = PySlice_New(start, stop, step);
5469 Py_DECREF(start);
5665 // next_instr wasn't incremented at the start of this
5913 Py_ssize_t start, end; local
5923 start = 0;
5927 start = co->co_argcount;
5928 end = start
6089 unsigned char *start = (unsigned char *)PyBytes_AS_STRING(code->co_exceptiontable); global() local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_view_abstract_ffi.cpp206 std::string::const_iterator start = originStr.begin(); in ReplaceHolder() local
211 while (std::regex_search(start, end, matchs, RESOURCE_APP_STRING_PLACEHOLDER)) { in ReplaceHolder()
224 start = originStr.begin() + matchs.prefix().length() + param.length(); in ReplaceHolder()
1266 // start in NewCjSweepGradient()
1267 double start = sweepGradientParam.start; in NewCjSweepGradient() local
1268 newGradient.GetSweepGradient()->startAngle = CalcDimension(start, DimensionUnit::PX); in NewCjSweepGradient()
/foundation/arkui/ace_engine/advanced_ui_component/segmentbutton/interfaces/
H A Dsegmentbutton.js202 splice(start, deleteCount, ...items) {
213 this.e2 = start;
216 return super.splice(start, deleteCount, ...items);
862 start: LengthMetrics.vp(8),
869 start: LengthMetrics.vp(8),
1538 start: LengthMetrics.vp(Number.parseFloat(this.options.m2.toString()) +
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/slider/
H A Dslider_pattern.cpp1009 TAG_LOGD(AceLogTag::ACE_SELECT_COMPONENT, "slider handle action start"); in InitPanEvent()
1460 PointF start; in GetSelectPosition() local
1463 start = direction_ == Axis::HORIZONTAL ? PointF(offset.GetX() + borderBlank_, offset.GetY() + centerWidth) in GetSelectPosition()
1469 start = direction_ == Axis::HORIZONTAL in GetSelectPosition()
1477 parameters.selectStart = start; in GetSelectPosition()
1486 auto start = direction_ == Axis::HORIZONTAL ? PointF(startPointX + borderBlank_, startPointY + centerWidth) in GetBackgroundPosition() local
1491 parameters.backStart = start; in GetBackgroundPosition()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_field_model_ng.cpp727 (isRTL ? margin->end : margin->start); in SetMargin()
729 (isRTL ? margin->start : margin->end); in SetMargin()
1614 void TextFieldModelNG::SetTextSelection(FrameNode* frameNode, int32_t start, int32_t end) in SetTextSelection() argument
1621 start = std::clamp(start, 0, length); in SetTextSelection()
1623 pattern->SetSelectionFlag(start, end); in SetTextSelection()
/third_party/ffmpeg/libavcodec/
H A Dac3enc.c259 * LUT to select the coupling start band based on the bit rate, sample rate, and
332 /* TODO: turn coupling on/off and adjust start band based on bit usage */ in ff_ac3_compute_coupling_strategy()
400 int start, end; in ac3_apply_rematrixing() local
413 start = ff_ac3_rematrix_band_tab[bnd]; in ac3_apply_rematrixing()
415 for (i = start; i < end; i++) { in ac3_apply_rematrixing()
816 /* block start info */ in count_frame_bits_fixed()
1136 * @param start starting coefficient bin
1141 int start, int end) in count_mantissa_bits_update_ch()
1150 s->ref_bap[ch][blk] + start, in count_mantissa_bits_update_ch()
1151 FFMIN(end, block->end_freq[ch]) - start); in count_mantissa_bits_update_ch()
1139 count_mantissa_bits_update_ch(AC3EncodeContext *s, int ch, uint16_t mant_cnt[AC3_MAX_BLOCKS][16], int start, int end) count_mantissa_bits_update_ch() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DBasicTest.java367 * characters at the start of a string are not put in canonical
2516 int start, end; in TestSerializedSet()
2537 start=it.codepoint; in TestSerializedSet()
2539 while(start<=end) { in TestSerializedSet()
2540 if(!sset.contains(start)){ in TestSerializedSet()
2541 errln("USerializedSet.contains failed for "+Utility.hex(start,8)); in TestSerializedSet()
2543 ++start; in TestSerializedSet()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DBasicTest.java364 * characters at the start of a string are not put in canonical
2513 int start, end; in TestSerializedSet()
2534 start=it.codepoint; in TestSerializedSet()
2536 while(start<=end) { in TestSerializedSet()
2537 if(!sset.contains(start)){ in TestSerializedSet()
2538 errln("USerializedSet.contains failed for "+Utility.hex(start,8)); in TestSerializedSet()
2540 ++start; in TestSerializedSet()
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsclone.c179 u64 start; member
258 le32 offset_to_image_data; /* From start of image_hdr. */
608 static void progress_init(struct progress_bar *p, u64 start, u64 stop, int res) argument
610 p->start = start;
612 p->unit = 100.0 / (stop - start);
625 if ((current - p->start) % p->resolution)
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_device.c1796 for (uint32_t q = range->start; q < range->start + range->count; q++) { in dzn_queue_submit()
1808 for (uint32_t q = range->start; q < range->start + range->count; q++) { in dzn_queue_submit()
1828 for (uint32_t q = range->start; q < range->start + range->count; q++) { in dzn_queue_submit()

Completed in 64 milliseconds

1...<<271272273274275276277278279280>>...333