/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/enum_napi/ |
H A D | js_enum.cpp | 259 for (size_t index = 0; index < vecSize; ++index) { in JsEnumIntInit() 260 napi_create_int32(env, enumItemVec[index].enumInt, &value[index]); in JsEnumIntInit() 265 for (size_t index = 0; index < vecSize; ++index) { in JsEnumIntInit() 266 property[index] = napi_property_descriptor DECLARE_NAPI_STATIC_PROPERTY( in JsEnumIntInit() 267 enumItemVec[index] in JsEnumIntInit() [all...] |
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/func_sample/sample/ |
H A D | venc_sample.h | 69 void OnNeedInputData(uint32_t index, std::shared_ptr<AVMemoryMock> data) override; 70 void OnNewOutputData(uint32_t index, std::shared_ptr<AVMemoryMock> data, OH_AVCodecBufferAttr attr) override; 82 void OnNeedInputData(uint32_t index, std::shared_ptr<AVBufferMock> data) override; 83 void OnNewOutputData(uint32_t index, std::shared_ptr<AVBufferMock> data) override; 93 void OnInputParameterAvailable(uint32_t index, std::shared_ptr<FormatMock> parameter) override; 103 void OnInputParameterWithAttrAvailable(uint32_t index, std::shared_ptr<FormatMock> attribute, 132 int32_t PushInputData(uint32_t index, OH_AVCodecBufferAttr &attr); 133 int32_t FreeOutputData(uint32_t index); 134 int32_t PushInputBuffer(uint32_t index); 135 int32_t PushInputParameter(uint32_t index); [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/relational/ |
H A D | relational_result_set_impl.cpp | 28 inline bool RelationalResultSetImpl::IsValid(int64_t index) const in IsValid() 30 return !isClosed_ && cacheDataSet_.empty() && index >= 0 && index < dataSet_.GetSize(); in IsValid() 76 int64_t index = position; in MoveToPosition() local 77 if (IsValid(index)) { in MoveToPosition() 78 index_ = index; in MoveToPosition() 81 if (index < 0) { in MoveToPosition() 83 } else if (index >= dataSet_.GetSize()) { in MoveToPosition() 149 ResultSet::ColumnType GetColType(int index, const ColumnTypePair *colMap, int32_t len) in GetColType() argument 155 if (colMap[mid].index_ < index) { in GetColType() [all...] |
/foundation/distributedhardware/distributed_screen/services/screendemo/ |
H A D | decoder_demo.cpp | 243 uint32_t index = signal_->inQueue_.front(); in InputFunc() local 265 ret = vdec_->QueueInputBuffer(index, info, AVCODEC_BUFFER_FLAG_CODEC_DATA); in InputFunc() 268 ret = vdec_->QueueInputBuffer(index, info, AVCODEC_BUFFER_FLAG_NONE); in InputFunc() 300 uint32_t index = signal_->outQueue_.front(); in OutputFunc() local 301 if (vdec_->ReleaseOutputBuffer(index, true) != 0) { in OutputFunc() 320 void VDecDemoCallback::OnInputBufferAvailable(uint32_t index, std::shared_ptr<Media::AVSharedMemory> buffer) in OnInputBufferAvailable() argument 322 cout << "OnInputBufferAvailable received, index:" << index << endl; in OnInputBufferAvailable() 324 signal_->inQueue_.push(index); in OnInputBufferAvailable() 329 void VDecDemoCallback::OnOutputBufferAvailable(uint32_t index, AVCodecBufferInf argument [all...] |
/foundation/filemanagement/dfs_service/frameworks/native/cloud_file_kit_inner/src/big_data_statistics/ |
H A D | gallery_download_file_stat.cpp | 98 uint32_t index = 0; in GetRangeIndex() local 99 for (; index < rangeVector.size(); index++) { in GetRangeIndex() 100 if (value <= rangeVector[index] * DOWNLOAD_FILE_BYTE_SIZE) { in GetRangeIndex() 104 return index; in GetRangeIndex() 131 uint32_t index = GetRangeIndex(size, rangeVector); in UpdateDownloadSizeStat() local 132 if (index >= stat_.imageSize.size()) { in UpdateDownloadSizeStat() 135 stat_.imageSize[index]++; in UpdateDownloadSizeStat() 138 uint32_t index = GetRangeIndex(size, rangeVector); in UpdateDownloadSizeStat() local 139 if (index > in UpdateDownloadSizeStat() [all...] |
/test/xts/dcts/distributedhardware/distributedscreentest/ |
H A D | decoder_demo.cpp | 243 uint32_t index = signal_->inQueue_.front(); in InputFunc() local 268 ret = vdec_->QueueInputBuffer(index, info, AVCODEC_BUFFER_FLAG_CODEC_DATA); in InputFunc() 271 ret = vdec_->QueueInputBuffer(index, info, AVCODEC_BUFFER_FLAG_NONE); in InputFunc() 303 uint32_t index = signal_->outQueue_.front(); in OutputFunc() local 304 if (vdec_->ReleaseOutputBuffer(index, true) != 0) { in OutputFunc() 323 void VDecDemoCallback::OnInputBufferAvailable(uint32_t index, std::shared_ptr<Media::AVSharedMemory> buffer) in OnInputBufferAvailable() argument 325 DHLOGI("OnInputBufferAvailable received, index: %{public}d", index); in OnInputBufferAvailable() 327 signal_->inQueue_.push(index); in OnInputBufferAvailable() 332 void VDecDemoCallback::OnOutputBufferAvailable(uint32_t index, AVCodecBufferInf argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | imm5.c | 95 int index = avpkt->data[10]; in imm5_decode_frame() local 101 } else if (index == 17) { in imm5_decode_frame() 102 index = 4; in imm5_decode_frame() 103 } else if (index == 18) { in imm5_decode_frame() 104 index = 5; in imm5_decode_frame() 107 if (index >= 1 && index <= 12) { in imm5_decode_frame() 112 index -= 1; in imm5_decode_frame() 113 off = offset = IMM5_units[index].len; in imm5_decode_frame() 123 memcpy(avpkt->data, IMM5_units[index] in imm5_decode_frame() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | srtp.c | 112 static void create_iv(uint8_t *iv, const uint8_t *salt, uint64_t index, in create_iv() argument 119 AV_WB64(indexbuf, index); in create_iv() 120 for (i = 0; i < 8; i++) // index << 16 in create_iv() 132 uint64_t index; in ff_srtp_decrypt() local 172 index = seq + (((uint64_t)v) << 16); in ff_srtp_decrypt() 196 index = srtcp_index & 0x7fffffff; in ff_srtp_decrypt() 231 create_iv(iv, rtcp ? s->rtcp_salt : s->rtp_salt, index, ssrc); in ff_srtp_decrypt() 242 uint64_t index; in ff_srtp_encrypt() local 254 padding += 4; // For the RTCP index in ff_srtp_encrypt() 264 index in ff_srtp_encrypt() [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | utrie.h | 51 * 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/lzma/CPP/7zip/UI/Common/ |
H A D | LoadCodecs.h | 396 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 D | ecma-property-hashmap.c | 53 #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 D | stw_ext_pixelformat.c | 329 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 D | eval_gc_nvp.py | 37 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 D | utrie.h | 51 * 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 D | page-memory.h | 102 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 D | r300_vs_draw.c | 60 /* 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 D | AtomicCounterBufferTest.cpp | 446 // 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 D | utrie.h | 51 * 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 D | spread_volatile_semantics_test.cpp | 58 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/multimedia/av_codec/test/unittest/video_test/vcodec_framework_test/ |
H A D | videodec_stable_unit_test.cpp | 26 #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 D | jsi_types.cpp | 175 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 D | calendar_component.cpp | 75 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 D | rs_render_node_drawable_adapter.cpp | 199 // 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 D | radv_nir_apply_pipeline_layout.c | 116 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 D | nvc0_query_hw.c | 187 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...] |