Home
last modified time | relevance | path

Searched refs:index (Results 1676 - 1700 of 10562) sorted by relevance

1...<<61626364656667686970>>...423

/third_party/lzma/CPP/7zip/UI/Common/
H A DLoadCodecs.h396 int GetCodec_LibIndex(UInt32 index) const;
397 bool GetCodec_DecoderIsAssigned(UInt32 index) const;
398 bool GetCodec_EncoderIsAssigned(UInt32 index) const;
399 bool GetCodec_IsFilter(UInt32 index, bool &isAssigned) const;
400 UInt32 GetCodec_NumStreams(UInt32 index);
401 HRESULT GetCodec_Id(UInt32 index, UInt64 &id);
402 AString GetCodec_Name(UInt32 index);
404 int GetHasherLibIndex(UInt32 index);
405 UInt64 GetHasherId(UInt32 index);
406 AString GetHasherName(UInt32 index);
[all...]
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-property-hashmap.c53 #define ECMA_PROPERTY_HASHMAP_GET_BIT(byte_p, index) \
54 ((byte_p)[(index) >> 3] & (1 << ((index) & 0x7)))
59 #define ECMA_PROPERTY_HASHMAP_CLEAR_BIT(byte_p, index) \
60 ((byte_p)[(index) >> 3] = (uint8_t) ((byte_p)[(index) >> 3] & ~(1 << ((index) & 0x7))))
65 #define ECMA_PROPERTY_HASHMAP_SET_BIT(byte_p, index) \
66 ((byte_p)[(index) >> 3] = (uint8_t) ((byte_p)[(index) >>
[all...]
/third_party/mesa3d/src/gallium/frontends/wgl/
H A Dstw_ext_pixelformat.c329 uint index; member
342 uint index; in score_pixelformats() local
358 for (index = 0; index < count; index++) { in score_pixelformats()
361 if (!stw_query_attrib(hdc, index + 1, 0, attribute, &actual_value)) in score_pixelformats()
370 scores[index].points = 0; in score_pixelformats()
380 scores[index].points = 0; in score_pixelformats()
382 scores[index].points -= (actual_value - expected_value) in score_pixelformats()
414 scores[i].index in wglChoosePixelFormatARB()
[all...]
/third_party/node/deps/v8/tools/
H A Deval_gc_nvp.py37 index = int(log(value, 2))
38 index -= self.start
39 if index < 0:
40 index = 0
41 return index
57 index = self.bucket_trait.value_to_bucket(key)
58 if index not in self.histogram:
59 self.histogram[index] = 0
60 self.histogram[index] += 1
114 index
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dutrie.h51 * Trie constants, defining shift widths, index array lengths, etc.
54 /** Shift size for shifting right the input index. 1..9 */
60 /** Mask for getting the lower bits from the input index. */
64 * Lead surrogate code points' index displacement in the index array.
70 * Shift size for shifting left the index array values.
71 * Increases possible data size with 16-bit index values at the cost
81 /** Number of bits of a trail surrogate that are used in index table lookups. */
85 * Number of index (stage 1) entries per lead surrogate.
86 * Same as number of index entrie
153 const uint16_t *index; global() member
559 int32_t index[UTRIE_MAX_INDEX_LENGTH+UTRIE_SURROGATE_BLOCK_COUNT]; global() member
[all...]
/third_party/node/deps/v8/src/heap/cppgc/
H A Dpage-memory.h102 const PageMemory GetPageMemory(size_t index) const { in GetPageMemory()
103 DCHECK_LT(index, kNumPageRegions); in GetPageMemory()
105 MemoryRegion(reserved_region().base() + kPageSize * index, kPageSize), in GetPageMemory()
107 reserved_region().base() + kPageSize * index + kGuardPageSize, in GetPageMemory()
124 void ChangeUsed(size_t index, bool value) { in ChangeUsed() argument
125 DCHECK_LT(index, kNumPageRegions); in ChangeUsed()
126 DCHECK_EQ(value, !page_memories_in_use_[index]); in ChangeUsed()
127 page_memories_in_use_[index] = value; in ChangeUsed()
250 size_t index = GetIndex(address); in Lookup() local
251 if (!page_memories_in_use_[index]) retur in Lookup()
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_vs_draw.c60 /* The index of the last generic output, after which we insert a new
89 unsigned name, unsigned index, unsigned interp, in emit_output()
100 decl.Semantic.Index = index; in emit_output()
109 unsigned name, unsigned index, unsigned interp) in insert_output_before()
120 emit_output(ctx, name, index, interp, in insert_output_before()
128 unsigned name, unsigned index, unsigned interp) in insert_output_after()
139 emit_output(ctx, name, index, interp, in insert_output_after()
335 unsigned index = info.output_semantic_index[i]; in r300_draw_init_vertex_shader() local
339 assert(index < 2); in r300_draw_init_vertex_shader()
340 transform.color_used[index] in r300_draw_init_vertex_shader()
88 emit_output(struct tgsi_transform_context *ctx, unsigned name, unsigned index, unsigned interp, unsigned reg) emit_output() argument
107 insert_output_before(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *before, unsigned name, unsigned index, unsigned interp) insert_output_before() argument
126 insert_output_after(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *after, unsigned name, unsigned index, unsigned interp) insert_output_after() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DAtomicCounterBufferTest.cpp446 // bug in index translation. http://anglebug.com/3783
468 int index = 2;
469 f0(ac[index]);
556 for (uint32_t index = 0; index < kAtomicCounterCount; ++index)
558 bufferData[index] = index;
579 for (uint32_t index = 0; index < kAtomicCounterCoun
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dutrie.h51 * Trie constants, defining shift widths, index array lengths, etc.
54 /** Shift size for shifting right the input index. 1..9 */
60 /** Mask for getting the lower bits from the input index. */
64 * Lead surrogate code points' index displacement in the index array.
70 * Shift size for shifting left the index array values.
71 * Increases possible data size with 16-bit index values at the cost
81 /** Number of bits of a trail surrogate that are used in index table lookups. */
85 * Number of index (stage 1) entries per lead surrogate.
86 * Same as number of index entrie
153 const uint16_t *index; global() member
559 int32_t index[UTRIE_MAX_INDEX_LENGTH+UTRIE_SURROGATE_BLOCK_COUNT]; global() member
[all...]
/third_party/spirv-tools/test/opt/
H A Dspread_volatile_semantics_test.cpp58 OpMemberName %StorageBuffer 0 "index" in TEST_P()
169 OpMemberName %StorageBuffer 0 "index" in TEST_P()
295 OpMemberName %StorageBuffer 0 "index" in TEST_F()
386 OpMemberName %StorageBuffer 0 "index" in TEST_F()
488 ": " + std::to_string(position.index) + ": " + message; in VolatileSpreadErrorTest()
531 OpMemberName %StorageBuffer 0 "index" in TEST_F()
624 OpMemberName %StorageBuffer 0 "index" in TEST_F()
716 OpMemberName %StorageBuffer 0 "index" in TEST_F()
812 OpMemberName %StorageBuffer 0 "index" in TEST_F()
902 OpMemberName %StorageBuffer 0 "index" in TEST_F()
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dability_scheduler_proxy.cpp416 * @return Returns the index of the inserted data record.
420 int index = -1; in Insert() local
427 return index; in Insert()
432 return index; in Insert()
437 return index; in Insert()
443 return index; in Insert()
446 if (!reply.ReadInt32(index)) { in Insert()
447 TAG_LOGE(AAFwkTag::ABILITYMGR, "fail to ReadInt32 index"); in Insert()
448 return index; in Insert()
451 return index; in Insert()
518 int index = -1; Update() local
567 int index = -1; Delete() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/indexer/
H A Drender_indexer_circle.cpp205 LOGE("[indexer] item index %{public}d is not valid", item); in HandleTouchDown()
220 bool RenderIndexerCircle::NeedChangeIndexer(int32_t index) in NeedChangeIndexer() argument
225 auto indexerItem = GetSpecificItem(index); in NeedChangeIndexer()
284 LOGI("[indexer] HandleTouched section index:%{public}d, touchAngle:%{public}lf", itemIndexInIndexer, touchAngle); in GetTouchedItemIndex()
389 int32_t index = GetPositionItemIndex(curSection); in UpdateCurrentSectionItem() local
390 double offsetAngle = -(index + 1 - collapseItemCount_) * perItemExtent_; in UpdateCurrentSectionItem()
609 void RenderIndexerCircle::UpdateItemBackground(double value, int32_t index) in UpdateItemBackground() argument
611 RefPtr<RenderIndexerItem> item = GetSpecificItem(index); in UpdateItemBackground()
670 // calculate focused item index on circle in UpdateArcTail()
671 int32_t index in UpdateArcTail() local
842 GetPositionItemIndex(int32_t index) GetPositionItemIndex() argument
861 int32_t index = 0; GetActualItemIndex() local
955 ChangeLanguage(int32_t index) ChangeLanguage() argument
977 SetItemsFocused(int32_t index, bool force, bool smooth) SetItemsFocused() argument
[all...]
/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/src/
H A Dvideoenc_ndk_sample.cpp72 static void VencInputDataReady(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) in VencInputDataReady() argument
95 signal->inIdxQueue_.push(index); in VencInputDataReady()
100 static void VencOutputDataReady(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, in VencOutputDataReady() argument
124 signal->outIdxQueue_.push(index); in VencOutputDataReady()
240 uint32_t index = signal_->inIdxQueue_.front(); in state_EOS() local
249 return OH_VideoEncoder_PushInputData(venc_, index, attr); in state_EOS()
559 bool VEncNdkSample::RandomEOS(uint32_t index) in RandomEOS() argument
567 OH_VideoEncoder_PushInputData(venc_, index, attr); in RandomEOS()
616 void VEncNdkSample::SetEOS(uint32_t index) in SetEOS() argument
623 int32_t res = OH_VideoEncoder_PushInputData(venc_, index, att in SetEOS()
638 PushData(OH_AVMemory *buffer, uint32_t index, int32_t &result) PushData() argument
700 InputDataNormal(bool &runningFlag, uint32_t index, OH_AVMemory *buffer) InputDataNormal() argument
730 InputDataFuzz(bool &runningFlag, uint32_t index) InputDataFuzz() argument
767 uint32_t index = signal_->inIdxQueue_.front(); InputFunc() local
825 uint32_t index; OutputFunc() local
[all...]
/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Dav_thumbnail_generator.cpp63 void OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) override
65 generator_->OnInputBufferAvailable(index, buffer);
68 void OnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) override
70 generator_->OnOutputBufferAvailable(index, buffer);
142 for (size_t index = 0; index < trackCount; index++) { in GetVideoTrackInfo()
143 if (!(trackInfos[index]->GetData(Tag::MIME_TYPE, trackMime_))) { in GetVideoTrackInfo()
149 CHECK_AND_RETURN_RET_LOG(trackInfos[index]->GetData(Tag::MEDIA_TYPE, mediaType), nullptr, in GetVideoTrackInfo()
150 "GetTargetTrackInfo failed to get mediaType, index in GetVideoTrackInfo()
183 OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) OnInputBufferAvailable() argument
196 OnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) OnOutputBufferAvailable() argument
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross.hpp128 unsigned index; member
223 // Given an OpTypeStruct in ID, obtain the identifier for member number "index".
225 const std::string &get_member_name(TypeID id, uint32_t index) const;
227 // Given an OpTypeStruct in ID, obtain the OpMemberDecoration for member number "index".
228 uint32_t get_member_decoration(TypeID id, uint32_t index, spv::Decoration decoration) const;
229 const std::string &get_member_decoration_string(TypeID id, uint32_t index, spv::Decoration decoration) const;
231 // Sets the member identifier for OpTypeStruct ID, member number "index".
232 void set_member_name(TypeID id, uint32_t index, const std::string &name);
234 // Returns the qualified member identifier for OpTypeStruct ID, member number "index",
236 const std::string &get_member_qualified_name(TypeID type_id, uint32_t index) cons
[all...]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.c165 unsigned index; member
175 unsigned index; member
184 unsigned index; member
294 unsigned index, in ureg_DECL_fs_input_centroid_layout()
325 ureg->input[i].first = index; in ureg_DECL_fs_input_centroid_layout()
326 ureg->input[i].last = index + array_size - 1; in ureg_DECL_fs_input_centroid_layout()
329 ureg->nr_input_regs = MAX2(ureg->nr_input_regs, index + array_size); in ureg_DECL_fs_input_centroid_layout()
358 unsigned index ) in ureg_DECL_vs_input()
361 assert(index / 32 < ARRAY_SIZE(ureg->vs_inputs)); in ureg_DECL_vs_input()
363 ureg->vs_inputs[index/3 in ureg_DECL_vs_input()
289 ureg_DECL_fs_input_centroid_layout(struct ureg_program *ureg, enum tgsi_semantic semantic_name, unsigned semantic_index, enum tgsi_interpolate_mode interp_mode, enum tgsi_interpolate_loc interp_location, unsigned index, unsigned usage_mask, unsigned array_id, unsigned array_size) ureg_DECL_fs_input_centroid_layout() argument
369 ureg_DECL_input_layout(struct ureg_program *ureg, enum tgsi_semantic semantic_name, unsigned semantic_index, unsigned index, unsigned usage_mask, unsigned array_id, unsigned array_size) ureg_DECL_input_layout() argument
427 ureg_DECL_output_layout(struct ureg_program *ureg, enum tgsi_semantic semantic_name, unsigned semantic_index, unsigned streams, unsigned index, unsigned usage_mask, unsigned array_id, unsigned array_size, boolean invariant) ureg_DECL_output_layout() argument
483 ureg_DECL_output_masked(struct ureg_program *ureg, unsigned name, unsigned index, unsigned usage_mask, unsigned array_id, unsigned array_size) ureg_DECL_output_masked() argument
497 ureg_DECL_output(struct ureg_program *ureg, enum tgsi_semantic name, unsigned index) ureg_DECL_output() argument
553 ureg_DECL_constant(struct ureg_program *ureg, unsigned index) ureg_DECL_constant() argument
747 ureg_DECL_sampler_view(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum tgsi_return_type return_type_x, enum tgsi_return_type return_type_y, enum tgsi_return_type return_type_z, enum tgsi_return_type return_type_w) ureg_DECL_sampler_view() argument
782 ureg_DECL_image(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum pipe_format format, boolean wr, boolean raw) ureg_DECL_image() argument
1045 uint index; ureg_DECL_immediate_block_uint() local
1697 emit_decl_sampler_view(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum tgsi_return_type return_type_x, enum tgsi_return_type return_type_y, enum tgsi_return_type return_type_z, enum tgsi_return_type return_type_w ) emit_decl_sampler_view() argument
1726 emit_decl_image(struct ureg_program *ureg, unsigned index, enum tgsi_texture_type target, enum pipe_format format, boolean wr, boolean raw) emit_decl_image() argument
1753 emit_decl_buffer(struct ureg_program *ureg, unsigned index, bool atomic) emit_decl_buffer() argument
[all...]
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/
H A Dvideodec_stable_unit_test.cpp26 #define CALLBACK_CHECK_LOG(index, signal) \
29 UNITTEST_INFO_LOG("index:%d", index); \
59 void InDataVoid(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) in InDataVoid() argument
62 (void)index; in InDataVoid()
66 void OutDataVoid(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, void *userData) in OutDataVoid() argument
69 (void)index; in OutDataVoid()
74 void InBufferVoid(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) in InBufferVoid() argument
77 (void)index; in InBufferVoid()
81 void OutBufferVoid(OH_AVCodec *codec, uint32_t index, OH_AVBuffe in InBufferVoid() argument
89 InDataHandle(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) InDataHandle() argument
100 OutDataHandle(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, void *userData) OutDataHandle() argument
110 InDataOperate(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) InDataOperate() argument
126 OutDataOperate(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, void *userData) OutDataOperate() argument
141 InDataQueue(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, void *userData) InDataQueue() argument
152 OutDataQueue(OH_AVCodec *codec, uint32_t index, OH_AVMemory *data, OH_AVCodecBufferAttr *attr, void *userData) OutDataQueue() argument
164 InBufferHandle(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) InBufferHandle() argument
174 OutBufferHandle(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) OutBufferHandle() argument
184 InBufferOperate(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) InBufferOperate() argument
199 OutBufferOperate(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) OutBufferOperate() argument
214 InBufferQueue(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) InBufferQueue() argument
225 OutBufferQueue(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) OutBufferQueue() argument
255 uint32_t index = 0; InputBufferLoop() local
281 uint32_t index = 0; OutputBufferLoop() local
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_types.cpp175 JsiRef<JsiValue> JsiArray::GetValueAt(size_t index) const in GetValueAt()
177 return JsiRef<JsiValue>::FastMake(GetEcmaVM(), panda::ArrayRef::GetValueAt(GetEcmaVM(), GetLocalHandle(), index)); in GetValueAt()
180 void JsiArray::SetValueAt(size_t index, JsiRef<JsiValue> value) const in SetValueAt() argument
182 panda::ArrayRef::SetValueAt(GetEcmaVM(), GetLocalHandle(), index, value.Get().GetLocalHandle()); in SetValueAt() local
433 JsiRef<JsiValue> JsiCallbackInfo::operator[](size_t index) const in operator []()
435 if (static_cast<int32_t>(index) < Length()) { in operator []()
436 return JsiRef<JsiValue>::FastMake(info_->GetVM(), info_->GetCallArgRef(index)); in operator []()
459 bool JsiCallbackInfo::GetBooleanArg(size_t index, bool& value) const in GetBooleanArg() argument
461 auto arg = info_->GetCallArgRef(index); in GetBooleanArg()
469 bool JsiCallbackInfo::GetInt32Arg(size_t index, int32_ argument
479 GetUint32Arg(size_t index, uint32_t& value) const GetUint32Arg() argument
489 GetDoubleArg(size_t index, double& value) const GetDoubleArg() argument
500 GetStringArg(size_t index, std::string& value) const GetStringArg() argument
510 GetDoubleArrayArg(size_t index, std::vector<double>& valueArr) const GetDoubleArrayArg() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/calendar/
H A Dcalendar_component.cpp75 int32_t index; in GoToMonth() local
80 index = (currentMonthIndex_ + 1) % MAX_MONTH_CACHE_NUM; in GoToMonth()
88 index = (currentMonthIndex_ + DISTANCE_FORM_LAST) % MAX_MONTH_CACHE_NUM; in GoToMonth()
104 dataAdapter_->RequestData({ cacheMonth, index }); in GoToMonth()
172 void CalendarController::RequestMonthData(int32_t index) in RequestMonthData() argument
187 if (nextIndex == index) { in RequestMonthData()
198 } else if (preIndex == index) { in RequestMonthData()
214 void CalendarController::CalculateNextIndex(int32_t index) in CalculateNextIndex() argument
217 if (index >= MAX_MONTH_CACHE_NUM) { in CalculateNextIndex()
219 index in CalculateNextIndex()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/drawable/
H A Drs_render_node_drawable_adapter.cpp199 // skip index is in the range in DrawRangeImpl()
208 // skip index is not in the range, fall back to normal drawing in DrawRangeImpl()
222 void RSRenderNodeDrawableAdapter::DrawImpl(Drawing::Canvas& canvas, const Drawing::Rect& rect, int8_t index) const in DrawImpl()
224 if (drawCmdList_.empty() || index < 0 || static_cast<uint32_t>(index) >= drawCmdList_.size()) { in DrawImpl()
230 if (index == skipIndex_) { in DrawImpl()
235 drawCmdList_[index](&canvas, &rect); in DrawImpl()
249 auto index = drawCmdIndex_.contentIndex_; in DrawContent() local
250 if (index == -1) { in DrawContent()
253 drawCmdList_[index]( in DrawContent()
262 auto index = drawCmdIndex_.childrenIndex_; DrawChildren() local
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_nir_apply_pipeline_layout.c116 nir_ssa_def *index = nir_imul_imm(b, intrin->src[1].ssa, 16); in visit_vulkan_resource_reindex() local
117 nir_instr_as_alu(index->parent_instr)->no_unsigned_wrap = true; in visit_vulkan_resource_reindex()
119 binding_ptr = nir_iadd_nuw(b, binding_ptr, index); in visit_vulkan_resource_reindex()
129 nir_ssa_def *index = nir_imul(b, intrin->src[1].ssa, stride); in visit_vulkan_resource_reindex() local
130 nir_instr_as_alu(index->parent_instr)->no_unsigned_wrap = true; in visit_vulkan_resource_reindex()
132 binding_ptr = nir_iadd_nuw(b, binding_ptr, index); in visit_vulkan_resource_reindex()
243 * We can only do this for constant array index or if all samplers in the array are the same. in get_sampler_desc()
252 constant_index += nir_src_as_uint(deref->arr.index) * array_size; in get_sampler_desc()
287 nir_ssa_def *index = NULL; in get_sampler_desc() local
293 nir_ssa_def *tmp = nir_imul_imm(b, deref->arr.index in get_sampler_desc()
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_query_hw.c187 nvc0_hw_query_get(push, q, 0x10, 0x09005002 | (q->index << 5)); in nvc0_hw_begin_query()
190 nvc0_hw_query_get(push, q, 0x10, 0x05805002 | (q->index << 5)); in nvc0_hw_begin_query()
193 nvc0_hw_query_get(push, q, 0x20, 0x05805002 | (q->index << 5)); in nvc0_hw_begin_query()
194 nvc0_hw_query_get(push, q, 0x30, 0x06805002 | (q->index << 5)); in nvc0_hw_begin_query()
197 nvc0_hw_query_get(push, q, 0x10, 0x03005002 | (q->index << 5)); in nvc0_hw_begin_query()
256 nvc0_hw_query_get(push, q, 0, 0x09005002 | (q->index << 5)); in nvc0_hw_end_query()
259 nvc0_hw_query_get(push, q, 0, 0x05805002 | (q->index << 5)); in nvc0_hw_end_query()
262 nvc0_hw_query_get(push, q, 0x00, 0x05805002 | (q->index << 5)); in nvc0_hw_end_query()
263 nvc0_hw_query_get(push, q, 0x10, 0x06805002 | (q->index << 5)); in nvc0_hw_end_query()
266 nvc0_hw_query_get(push, q, 0x00, 0x03005002 | (q->index << in nvc0_hw_end_query()
388 nvc0_hw_get_query_result_resource(struct nvc0_context *nvc0, struct nvc0_query *q, enum pipe_query_flags flags, enum pipe_query_value_type result_type, int index, struct pipe_resource *resource, unsigned offset) nvc0_hw_get_query_result_resource() argument
526 nvc0_hw_create_query(struct nvc0_context *nvc0, unsigned type, unsigned index) nvc0_hw_create_query() argument
[all...]
/third_party/python/Lib/idlelib/
H A Ddebugger.py390 def load_stack(self, stack, index=None):
410 if i == index:
413 if index is not None:
414 self.select(index)
429 def on_select(self, index):
431 if 0 <= index < len(self.stack):
432 self.gui.show_frame(self.stack[index])
434 def on_double(self, index):
436 self.show_source(index)
439 index
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderMemory.cpp64 dst.move(el.index, p.Load<SIMD::Float>(robustness, state->activeLaneMask(), atomic, memoryOrder)); in EmitLoad()
116 p.Store(value.Float(el.index), robustness, mask, atomic, memoryOrder); in Store()
186 // Note: the module may contain descriptor set references that are not suitable for this implementation -- using a set index higher than the number in EmitVariable()
230 p.Store(initialValue.Float(el.index), robustness, state->activeLaneMask()); in EmitVariable()
257 VisitMemoryObject(srcPtrId, [&](const MemoryElement &el) { srcOffsets[el.index] = el.offset; }); in EmitCopyMemory()
260 auto it = srcOffsets.find(el.index); in EmitCopyMemory()
288 void SpirvShader::VisitMemoryObjectInner(sw::SpirvShader::Type::ID id, sw::SpirvShader::Decorations d, uint32_t &index, uint32_t offset, const MemoryVisitor &f) const in VisitMemoryObjectInner() argument
302 VisitMemoryObjectInner(type.definition.word(3), d, index, offset, f); in VisitMemoryObjectInner()
307 f(MemoryElement{ index++, offset, type }); in VisitMemoryObjectInner()
314 VisitMemoryObjectInner(type.definition.word(2), d, index, offse in VisitMemoryObjectInner()
360 uint32_t index = 0; VisitMemoryObject() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-cff-common.hh236 void set_offset_at (unsigned int index, unsigned int offset) in set_offset_at()
238 HBUINT8 *p = offsets + offSize * index + offSize; in set_offset_at()
248 unsigned int offset_at (unsigned int index) const in offset_at()
250 assert (index <= count); in offset_at()
251 const HBUINT8 *p = offsets + offSize * index; in offset_at()
259 unsigned int length_at (unsigned int index) const in length_at()
261 if (unlikely ((offset_at (index + 1) < offset_at (index)) || in length_at()
262 (offset_at (index + 1) > offset_at (count)))) in length_at()
264 return offset_at (index in length_at()
[all...]

Completed in 23 milliseconds

1...<<61626364656667686970>>...423