/third_party/typescript/tests/baselines/reference/ |
H A D | assignmentCompat1.js | 3 var y: { [index: string]: any }; 4 var z: { [index: number]: any }; 6 y = x; // Ok because index signature type is any 8 z = x; // Ok because index signature type is any 20 y = x; // Ok because index signature type is any
22 z = x; // Ok because index signature type is any
|
H A D | indexSignaturesInferentialTyping.js | 2 function foo<T>(items: { [index: number]: T }): T { return undefined; } 3 function bar<T>(items: { [index: string]: T }): T { return undefined; }
|
/third_party/zlib/examples/ |
H A D | zran.h | 26 // build an index, with access points about every span bytes of uncompressed 33 // On success, *built points to the resulting index. 36 // Use the index to read len bytes from offset into buf. Return the number of 40 // index, this function should not return an error unless the file was modified 41 // somehow since the index was generated, given that deflate_index_build() had 45 // Z_STREAM_ERROR if the index is not valid, or Z_ERRNO if there is an error 47 ptrdiff_t deflate_index_extract(FILE *in, struct deflate_index *index, 50 // Deallocate an index built by deflate_index_build(). 51 void deflate_index_free(struct deflate_index *index);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | vk_cache_utils.cpp | 688 for (uint32_t index = 0; index < createInfo.attachmentCount; ++index) in CreateRenderPass2() 690 ToAttachmentDesciption2(createInfo.pAttachments[index], &attachmentDescs[index]); in CreateRenderPass2() 719 for (uint32_t index = 0; index < desc.inputAttachmentCount; ++index) in CreateRenderPass2() 722 if (index >= desc.colorAttachmentCount) in CreateRenderPass2() 726 ASSERT(index in CreateRenderPass2() [all...] |
/third_party/pulseaudio/src/modules/alsa/ |
H A D | alsa-mixer.c | 117 if (id->index > 0) { in pa_alsa_mixer_id_to_string() 118 snprintf(dst, dst_len, "'%s',%d", id->name, id->index); in pa_alsa_mixer_id_to_string() 125 static int alsa_id_decode(const char *src, char *name, int *index) { in alsa_id_decode() argument 129 *index = 0; in alsa_id_decode() 149 pa_log("Element %s: index value is invalid", src); in alsa_id_decode() 152 *index = atoi(idx); in alsa_id_decode() 156 pa_alsa_jack *pa_alsa_jack_new(pa_alsa_path *path, const char *mixer_device_name, const char *name, int index) { in pa_alsa_jack_new() argument 166 jack->alsa_id.index = index; in pa_alsa_jack_new() 821 snd_mixer_selem_id_set_index((sid), (aid)->index); \ 2009 int index; pa_alsa_element_get() local 2054 int index; jack_get() local 2086 int index; option_get() local 3006 int index; pa_alsa_path_synthesize() local 3455 int index; pa_alsa_path_set_new() local 3997 int index; decibel_fix_get() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | mpeg4videoenc.c | 70 * @param[in] block_last_index last index in scantable order that refers to a non zero element in block. 80 const int index = scantable[j]; in get_block_rate() local 81 int level = block[index]; in get_block_rate() 105 * @param[in] zigzag_last_index index referring to the last non zero coefficient in zigzag order 136 * @param[out] zigzag_last_index index referring to the last non zero coefficient in zigzag order 263 * @param n block index (0-3 are luma, 4-5 are chroma) 288 * @param n block index (0-3 are luma, 4-5 are chroma) 324 const int index = UNI_MPEG4_ENC_INDEX(0, run, level); in mpeg4_encode_block() local 325 put_bits(ac_pb, len_tab[index], bits_tab[index]); in mpeg4_encode_block() 340 const int index = UNI_MPEG4_ENC_INDEX(1, run, level); mpeg4_encode_block() local 382 const int index = UNI_MPEG4_ENC_INDEX(0, run, level); mpeg4_get_block_length() local 395 const int index = UNI_MPEG4_ENC_INDEX(1, run, level); mpeg4_get_block_length() local 1186 const int index = UNI_MPEG4_ENC_INDEX(last, run, slevel + 64); init_uni_mpeg4_rl_tab() local [all...] |
H A D | h264_cabac.c | 1635 int index[64]; in decode_cabac_residual_internal() local 1674 index[coeff_count++] = last; \ in decode_cabac_residual_internal() 1682 index[coeff_count++] = last;\ in decode_cabac_residual_internal() 1686 coeff_count = decode_significance_8x8(CC, significant_coeff_ctx_base, index, in decode_cabac_residual_internal() 1692 coeff_count = decode_significance(CC, max_coeff, significant_coeff_ctx_base, index, in decode_cabac_residual_internal() 1726 int j= scantable[index[--coeff_count]]; \ in decode_cabac_residual_internal() 1888 const int index = 16*p + i4x4; in decode_cabac_luma_residual() local 1889 decode_cabac_residual_nondc(h, sl, sl->mb + (16*index << pixel_shift), ctx_cat[1][p], index, scan + 1, qmul, 15); in decode_cabac_luma_residual() 1899 const int index in decode_cabac_luma_residual() local 1905 const int index = 16*p + 4*i8x8 + i4x4; decode_cabac_luma_residual() local 2178 const int index= 4*i + block_width*j; ff_h264_decode_mb_cabac() local 2456 const int index = 16 + 16 * c + 8*i8x8 + i; ff_h264_decode_mb_cabac() local 2479 const int index = 16 + 16 * c + i; ff_h264_decode_mb_cabac() local [all...] |
H A D | huffyuvdec.c | 569 code = table[index].sym; \ 570 n = table[index].len; \ 576 index = SHOW_UBITS(name, gb, nb_bits) + code; \ 577 code = table[index].sym; \ 578 n = table[index].len; \ 584 index = SHOW_UBITS(name, gb, nb_bits) + code; \ 585 code = table[index].sym; \ 586 n = table[index].len; \ 596 unsigned int index = SHOW_UBITS(name, gb, bits); \ 597 int code, n = dtable[index] 680 unsigned int index; decode_plane_bitstream() local 700 unsigned int index; decode_plane_bitstream() local 750 unsigned int index; decode_bgr_1() local [all...] |
/third_party/jerryscript/jerry-core/ecma/base/ |
H A D | ecma-helpers-string.c | 81 uint32_t index = 0; in ecma_string_to_array_index() local 96 index = (index * 10) + (uint32_t) (*string_p++ - LIT_CHAR_0); in ecma_string_to_array_index() 102 *result_p = index; in ecma_string_to_array_index() 110 || index > (UINT32_MAX / 10) in ecma_string_to_array_index() 111 || (index == (UINT32_MAX / 10) && *string_p > LIT_CHAR_5)) in ecma_string_to_array_index() 116 *result_p = (index * 10) + (uint32_t) (*string_p - LIT_CHAR_0); in ecma_string_to_array_index() 944 * Check if string is array index. 946 * @return ECMA_STRING_NOT_ARRAY_INDEX if string is not array index 947 * the array index otherwis 2271 ecma_external_string_get_char_at_pos(lit_utf8_size_t id, ecma_length_t index) ecma_external_string_get_char_at_pos() argument 2293 ecma_string_get_char_at_pos(const ecma_string_t *string_p, ecma_length_t index) ecma_string_get_char_at_pos() argument 2870 ecma_op_advance_string_index(ecma_string_t *str_p, uint32_t index, bool is_unicode) ecma_op_advance_string_index() argument [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | js-generic-lowering.cc | 268 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSHasProperty() 282 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSLoadProperty() 289 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSLoadProperty() 311 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSLoadNamed() 319 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSLoadNamed() 350 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSLoadNamedFromSuper() 365 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSLoadGlobal() 371 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSLoadGlobal() 411 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSSetKeyedProperty() 421 jsgraph()->TaggedIndexConstant(p.feedback().index())); in LowerJSSetKeyedProperty() [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-array.cc | 127 // If |index| is Undefined, returns init_if_undefined. 128 // If |index| is negative, returns length + index. 129 // If |index| is positive, returns index. 133 Handle<Object> index, in GetRelativeIndex() 136 if (!index->IsUndefined()) { in GetRelativeIndex() 139 Object::ToInteger(isolate, index), in GetRelativeIndex() 196 Handle<String> index = isolate->factory()->NumberToString( in GenericArrayFill() local 201 isolate, receiver, index, valu in GenericArrayFill() 131 GetRelativeIndex(Isolate* isolate, double length, Handle<Object> index, double init_if_undefined) GetRelativeIndex() argument 433 Handle<String> index = isolate->factory()->NumberToString(new_length); GenericArrayPop() local 680 uint32_t index = index_offset_ + i; visit() local [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | ordered-hash-table.cc | 9 #include "src/objects/internal-index.h" 213 int index = HashTableStartIndex() + nof_buckets + (i * kEntrySize); in ConvertToKeysArray() local 214 Object key = table->get(index); in ConvertToKeysArray() 344 int index = table.EntryToIndex(entry); in Delete() local 348 table.set(index + i, hole); in Delete() 411 int index = EntryToIndex(entry); in SetEntry() local 412 this->set(index, key); in SetEntry() 413 this->set(index + kValueOffset, value); in SetEntry() 486 int index = EntryToIndex(entry); in SetEntry() local 487 this->set(index, ke in SetEntry() 1444 int index = Smi::ToInt(this->index()); Transition() local 1479 int index = Smi::ToInt(this->index()); HasMore() local [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Framebuffer.cpp | 283 // Needed to index into the attachment arrays/bitsets. 313 const gl::ImageIndex &index = attachment.getTextureImageIndex(); in AttachmentOverlapsWithTexture() local 314 GLuint attachmentLevel = static_cast<GLuint>(index.getLevelIndex()); in AttachmentOverlapsWithTexture() 1066 for (size_t index = 0; index < count; ++index) 1068 SetComponentTypeMask(getDrawbufferWriteType(index), index, &mState.mDrawBufferTypeMask); 1070 if (drawStates[index] != GL_NONE && mState.mColorAttachments[index] 1754 getSamplePosition(const Context *context, size_t index, GLfloat *xy) const getSamplePosition() argument 2066 onSubjectStateChange(angle::SubjectIndex index, angle::SubjectMessage message) onSubjectStateChange() argument 2120 getAttachmentFromSubjectIndex(angle::SubjectIndex index) getAttachmentFromSubjectIndex() argument [all...] |
/third_party/ffmpeg/tools/python/ |
H A D | convert_from_tensorflow.py | 33 index = 0 variable in Operand 40 self.index = Operand.index 41 Operand.index = Operand.index + 1 51 return "{}: (name: {}, iotype: {}, dtype: {}, dims: {}, used_count: {})".format(self.index, 56 return self.index < other.index 102 return self.name_operand_dict[name].index 447 np.array([operand.index, le [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_shader_fs.cpp | 125 unsigned index = 0; in barycentric_ij_index() local 128 index = 0; in barycentric_ij_index() 133 index = 1; in barycentric_ij_index() 136 index = 2; in barycentric_ij_index() 146 return index; in barycentric_ij_index() 148 return index + 3; in barycentric_ij_index() 344 auto index = nir_src_as_const_value(intr->src[index_src_id]); in scan_input() local 345 assert(index); in scan_input() 350 unsigned location = nir_intrinsic_io_semantics(intr).location + index->u32; in scan_input() 351 unsigned driver_location = nir_intrinsic_base(intr) + index in scan_input() 643 unsigned index = nir_intrinsic_component(intr) + i; load_input_hw() local [all...] |
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | macro-assembler-loong64.h | 15 #include "src/objects/tagged-index.h" 116 void Branch(Label* L, Condition cond, Register rj, RootIndex index); 645 // GetLabelFunction must be lambda '[](size_t index) -> Label*' or a 646 // functor/function with 'Label *func(size_t index)' declaration. 648 void GenerateSwitchTable(Register index, size_t case_count, 652 void LoadRoot(Register destination, RootIndex index) final; 653 void LoadRoot(Register destination, RootIndex index, Condition cond, 814 void PushRoot(RootIndex index) { in PushRoot() argument 817 LoadRoot(scratch, index); in PushRoot() 822 void JumpIfRoot(Register with, RootIndex index, Labe argument 830 JumpIfNotRoot(Register with, RootIndex index, Label* if_not_equal) JumpIfNotRoot() argument 1063 GenerateSwitchTable(Register index, size_t case_count, Func GetLabelFunction) GenerateSwitchTable() argument [all...] |
/third_party/rust/crates/bindgen/bindgen/ |
H A D | clang.rs | 1282 index: 0, in template_args() 1478 index: u32, 1484 if self.index < self.length { in next() 1485 let idx = self.index as c_uint; in next() 1486 self.index += 1; in next() 1498 assert!(self.index <= self.length); in len() 1499 (self.length - self.index) as usize in len() 1561 index: 0, in get_children() 1576 index: 0, in get_tag_attrs() 1585 index [all...] |
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_glsl.hpp | 384 virtual void emit_struct_member(const SPIRType &type, uint32_t member_type_id, uint32_t index, 509 std::string to_array_size(const SPIRType &type, uint32_t index); 510 uint32_t to_array_size_literal(const SPIRType &type, uint32_t index) const; 521 virtual bool member_is_non_native_row_major_matrix(const SPIRType &type, uint32_t index); 522 bool member_is_remapped_physical_type(const SPIRType &type, uint32_t index) const; 523 bool member_is_packed_physical_type(const SPIRType &type, uint32_t index) const; 678 AccessChainFlags flags, bool &access_chain_is_arrayed, uint32_t index); 710 const char *index_to_swizzle(uint32_t index); 715 void append_global_func_args(const SPIRFunction &func, uint32_t index, SmallVector<std::string> &arglist); 727 std::string to_extract_component_expression(uint32_t id, uint32_t index); [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_parse_utils.cpp | 48 for (uint32 index = 0; index < table_entries; index++) in LookupName() 51 if (key == table [index] . key) in LookupName() 54 return table [index] . name; in LookupName() 2219 for (uint32 index = 0; index < v.Count (); index++) in DumpVector() 2222 printf (" %0.4f", v [index]); in DumpVector() 3224 for (uint32 index in ParseVectorTag() [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | descriptor_test.py | 554 self.assertEqual(sequence.index(item), 0) 559 self.assertRaises(ValueError, sequence.index, other_item) 560 self.assertRaises(ValueError, sequence.index, []) 670 self.assertEqual(service_descriptor.index, 0) 681 self.assertEqual(0, oneof_descriptor.index) 1039 for index in range(len(names)): 1041 field.number = index + 1 1042 field.name = names[index] 1044 for index in range(len(camelcase_names)): 1045 self.assertEqual(result.fields[index] [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | PixelPipeline.cpp | 104 Float4 x = shaderModel < 0x0104 ? v[2 + dst.index].x : v[2 + src0.index].x; in applyShader() 105 Float4 y = shaderModel < 0x0104 ? v[2 + dst.index].y : v[2 + src0.index].y; in applyShader() 106 Float4 z = shaderModel < 0x0104 ? v[2 + dst.index].z : v[2 + src0.index].z; in applyShader() 107 Float4 w = shaderModel < 0x0104 ? v[2 + dst.index].w : v[2 + src0.index].w; in applyShader() 131 TEXCOORD(d, x, y, z, dst.index); in applyShader() 137 TEXCRD(d, x, y, z, src0.index, src in applyShader() [all...] |
/third_party/vixl/src/aarch64/ |
H A D | assembler-sve-aarch64.cc | 1313 int index, in fcmla() 1320 Emit(FCMLA_z_zzzi_h | SVEMulComplexIndexHelper(zm, index) | rotate_bit | in fcmla() 1525 int index, in SVEMulIndexHelper() 1532 // Allowable register number and lane index depends on the lane size. in SVEMulIndexHelper() 1536 VIXL_ASSERT(IsUint3(index)); in SVEMulIndexHelper() 1538 // bit of the index. So, if index is less than four, the top bit of index in SVEMulIndexHelper() 1541 if (index < 4) size = 0; in SVEMulIndexHelper() 1542 // Top two bits of "zm" encode the index in SVEMulIndexHelper() 1310 fcmla(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index, int rot) fcmla() argument 1523 SVEMulIndexHelper(unsigned lane_size_in_bytes_log2, const ZRegister& zm, int index, Instr op_h, Instr op_s, Instr op_d) SVEMulIndexHelper() argument 1566 SVEMulLongIndexHelper(const ZRegister& zm, int index) SVEMulLongIndexHelper() argument 1588 SVEMulComplexIndexHelper(const ZRegister& zm, int index) SVEMulComplexIndexHelper() argument 1607 fmla(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) fmla() argument 1626 fmls(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) fmls() argument 1648 fmul(const ZRegister& zd, const ZRegister& zn, const ZRegister& zm, unsigned index) fmul() argument 2201 void Assembler::index(const ZRegister& zd, int start, int step) { index() function in vixl::aarch64::Assembler 2212 void Assembler::index(const ZRegister& zd, index() function in vixl::aarch64::Assembler 2228 void Assembler::index(const ZRegister& zd, const Register& rn, int imm5) { index() function in vixl::aarch64::Assembler 2240 void Assembler::index(const ZRegister& zd, int imm5, const Register& rm) { index() function in vixl::aarch64::Assembler 5325 sdot(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sdot() argument 5351 udot(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) udot() argument 5972 dup(const ZRegister& zd, const ZRegister& zn, unsigned index) dup() argument 6556 mov(const ZRegister& zd, const ZRegister& zn, unsigned index) mov() argument 6825 cdot(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index, int rot) cdot() argument 6875 cmla(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index, int rot) cmla() argument 7131 fmlalb(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) fmlalb() argument 7159 fmlalt(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) fmlalt() argument 7191 fmlslb(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) fmlslb() argument 7223 fmlslt(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) fmlslt() argument 7285 mla(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) mla() argument 7306 mls(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) mls() argument 7327 mul(const ZRegister& zd, const ZRegister& zn, const ZRegister& zm, int index) mul() argument 8002 sqdmlalb(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sqdmlalb() argument 8065 sqdmlalt(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sqdmlalt() argument 8113 sqdmlslb(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sqdmlslb() argument 8176 sqdmlslt(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sqdmlslt() argument 8221 sqdmulh(const ZRegister& zd, const ZRegister& zn, const ZRegister& zm, int index) sqdmulh() argument 8298 sqrdcmlah(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index, int rot) sqrdcmlah() argument 8336 sqrdmlah(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sqrdmlah() argument 8375 sqrdmlsh(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sqrdmlsh() argument 8410 sqrdmulh(const ZRegister& zd, const ZRegister& zn, const ZRegister& zm, int index) sqrdmulh() argument 9870 usdot(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) usdot() argument 9884 sudot(const ZRegister& zda, const ZRegister& zn, const ZRegister& zm, int index) sudot() argument [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_load_store_vectorize.c | 171 * "offset_defs" is sorted in ascenting order by the ssa definition's index. 185 unsigned index; member 220 hash = XXH32(&key->resource->index, sizeof(key->resource->index), hash); in hash_entry_key() 222 hash = XXH32(&key->var->index, sizeof(key->var->index), hash); in hash_entry_key() 228 hash = XXH32(&key->offset_defs[i].def->index, sizeof(key->offset_defs[i].def->index), hash); in hash_entry_key() 370 if (i == offset_def_count || def.def->index > offset_defs[i].def->index) { in add_to_entry_key() 428 nir_ssa_def *index = deref->arr.index.ssa; create_entry_key_from_deref() local 709 nir_ssa_def *index = nir_imm_intN_t(b, nir_src_as_int(deref->arr.index) - offset / stride, subtract_deref() local [all...] |
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_query.c | 63 unsigned index; member 99 begin_vk_query_indexed(struct zink_context *ctx, struct zink_vk_query *vkq, int index, in begin_vk_query_indexed() argument 108 index); in begin_vk_query_indexed() 114 end_vk_query_indexed(struct zink_context *ctx, struct zink_vk_query *vkq, int index) in end_vk_query_indexed() argument 120 vkq->query_id, index); in end_vk_query_indexed() 417 int xfb_idx = num_queries == 4 ? i : q->index; in query_pool_get_range() 444 unsigned query_type, unsigned index) in zink_create_query() 453 query->index = index; in zink_create_query() 466 if (query->vkqtype == VK_QUERY_TYPE_PRIMITIVES_GENERATED_EXT && index in zink_create_query() 443 zink_create_query(struct pipe_context *pctx, unsigned query_type, unsigned index) zink_create_query() argument 1226 zink_get_query_result_resource(struct pipe_context *pctx, struct pipe_query *pquery, enum pipe_query_flags flags, enum pipe_query_value_type result_type, int index, struct pipe_resource *pres, unsigned offset) zink_get_query_result_resource() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_query.c | 565 int index, 611 unsigned index) in r600_query_hw_create() 648 query->stream = index; in r600_query_hw_create() 976 static struct pipe_query *r600_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) in r600_create_query() argument 986 return r600_query_hw_create(rscreen, query_type, index); in r600_create_query() 1082 struct r600_query_hw *rquery, int index, in r600_get_hw_query_params() 1121 params->start_offset = 8 - index * 8; in r600_get_hw_query_params() 1122 params->end_offset = 24 - index * 8; in r600_get_hw_query_params() 1143 params->start_offset = offsets[index]; in r600_get_hw_query_params() 1144 params->end_offset = 88 + offsets[index]; in r600_get_hw_query_params() 609 r600_query_hw_create(struct r600_common_screen *rscreen, unsigned query_type, unsigned index) r600_query_hw_create() argument 1081 r600_get_hw_query_params(struct r600_common_context *rctx, struct r600_query_hw *rquery, int index, struct r600_hw_query_params *params) r600_get_hw_query_params() argument 1308 r600_get_query_result_resource(struct pipe_context *ctx, struct pipe_query *query, enum pipe_query_flags flags, enum pipe_query_value_type result_type, int index, struct pipe_resource *resource, unsigned offset) r600_get_query_result_resource() argument 1600 r600_query_hw_get_result_resource(struct r600_common_context *rctx, struct r600_query *rquery, enum pipe_query_flags flags, enum pipe_query_value_type result_type, int index, struct pipe_resource *resource, unsigned offset) r600_query_hw_get_result_resource() argument 2035 r600_get_driver_query_info(struct pipe_screen *screen, unsigned index, struct pipe_driver_query_info *info) r600_get_driver_query_info() argument 2083 r600_get_driver_query_group_info(struct pipe_screen *screen, unsigned index, struct pipe_driver_query_group_info *info) r600_get_driver_query_group_info() argument [all...] |