/external/mesa3d/src/intel/tools/ |
D | aub_write.c | 54 static struct aub_context *aub_context_new(struct aub_file *aub, uint32_t new_id); 55 static void mem_trace_memory_write_header_out(struct aub_file *aub, uint64_t addr, 82 data_out(struct aub_file *aub, const void *data, size_t size) in data_out() argument 87 fail_if(fwrite(data, 1, size, aub->file) == 0, in data_out() 92 dword_out(struct aub_file *aub, uint32_t data) in dword_out() argument 94 data_out(aub, &data, sizeof(data)); in dword_out() 98 write_execlists_header(struct aub_file *aub, const char *name) in write_execlists_header() argument 105 aub->pci_id, name); in write_execlists_header() 109 dword_out(aub, CMD_MEM_TRACE_VERSION | (dwords - 1)); in write_execlists_header() 110 dword_out(aub, AUB_MEM_TRACE_VERSION_FILE_VERSION); in write_execlists_header() [all …]
|
D | aub_write.h | 107 void aub_file_init(struct aub_file *aub, FILE *file, FILE *debug, uint16_t pci_id, const char *app_… 108 void aub_file_finish(struct aub_file *aub); 110 static inline bool aub_use_execlists(const struct aub_file *aub) in aub_use_execlists() argument 112 return aub->devinfo.gen >= 8; in aub_use_execlists() 115 uint32_t aub_gtt_size(struct aub_file *aub); 127 void aub_write_default_setup(struct aub_file *aub); 128 void aub_map_ppgtt(struct aub_file *aub, uint64_t start, uint64_t size); 129 void aub_write_ggtt(struct aub_file *aub, uint64_t virt_addr, uint64_t size, const void *data); 130 void aub_write_trace_block(struct aub_file *aub, 133 void aub_write_exec(struct aub_file *aub, uint32_t ctx_id, uint64_t batch_addr, [all …]
|
D | error2aub.c | 276 struct aub_file aub = {}; in main() local 308 aub_file_init(&aub, aub_file, in main() 311 aub.verbose_log_file = stdout; in main() 312 default_gtt = active_gtt = aub_use_execlists(&aub) ? PPGTT : GGTT; in main() 451 aub_map_ppgtt(&aub, bo_entry->addr, bo_entry->size); in main() 452 aub_write_trace_block(&aub, AUB_TRACE_TYPE_BATCH, in main() 455 aub_write_ggtt(&aub, bo_entry->addr, bo_entry->size, bo_entry->data); in main() 459 aub_map_ppgtt(&aub, bo_entry->addr, bo_entry->size); in main() 460 aub_write_trace_block(&aub, AUB_TRACE_TYPE_NOTYPE, in main() 463 aub_write_ggtt(&aub, bo_entry->addr, bo_entry->size, bo_entry->data); in main() [all …]
|
D | intel_dump_gpu.in | 13 -o, --output=FILE Name of AUB file. Defaults to COMMAND.aub 20 the output aub file. This helps reducing output file
|
D | meson.build | 22 'aub',
|
D | aubinator_viewer.cpp | 477 uint8_t *aub = (uint8_t *) window->aub_bo.map + window->aub_offset + off; in write_edit_window() local 479 *gtt = *aub = d; in write_edit_window()
|
/external/llvm/test/tools/llvm-cov/ |
D | llvm-cov.test | 15 RUN: diff -aub test_no_options.cpp.gcov test.cpp.gcov 16 RUN: diff -aub test_no_options.h.gcov test.h.gcov 22 RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov 23 RUN: diff -aub test_objdir.h.gcov test.h.gcov 27 RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov 28 RUN: diff -aub test_objdir.h.gcov test.h.gcov 32 RUN: diff -aub test_objdir.cpp.gcov test.cpp.gcov 33 RUN: diff -aub test_objdir.h.gcov test.h.gcov 41 RUN: diff -aub test_missing.cpp.gcov test.cpp.gcov 42 RUN: diff -aub test_missing.h.gcov test.h.gcov [all …]
|
/external/igt-gpu-tools/lib/ |
D | rendercopy_gen8.c | 81 static void annotation_init(struct annotations_context *aub) in annotation_init() argument 87 aub->index = 1; in annotation_init() 99 static void annotation_add_batch(struct annotations_context *aub, size_t size) in annotation_add_batch() argument 101 add_annotation(&aub->annotations[0], AUB_TRACE_TYPE_BATCH, 0, size); in annotation_add_batch() 104 static void annotation_add_state(struct annotations_context *aub, in annotation_add_state() argument 109 igt_assert(aub->index < MAX_ANNOTATIONS); in annotation_add_state() 111 add_annotation(&aub->annotations[aub->index++], in annotation_add_state() 114 add_annotation(&aub->annotations[aub->index++], in annotation_add_state() 120 static void annotation_flush(struct annotations_context *aub, in annotation_flush() argument 127 aub->annotations, in annotation_flush() [all …]
|
/external/igt-gpu-tools/man/ |
D | intel_aubdump.rst | 37 Write the trace output to the file FILE. Default is COMMAND.aub. 40 Override the PCI ID of the drm device. This is useful for getting an aub 48 intel_aubdump -v --output=stuff.aub -- glxgears -geometry 500x500 49 Launches glxgears with its -geometry option and enables aub dumping with 50 the -v and --output=stuff.aub options.
|
/external/llvm-project/clang/test/SemaCXX/ |
D | const-cast.cpp | 61 extern const int *aub[]; in bad_const_cast_test() 64 (void) const_cast<int *(*)[]>(&aub); // ok in bad_const_cast_test() 68 …(void) const_cast<int *(*)[100]>(&aub); // expected-error {{const_cast from 'const int *(*)[]' to … in bad_const_cast_test()
|
/external/deqp-deps/glslang/Test/ |
D | runtimeArray.vert | 30 float aub[]; 57 aub[3]; 82 aub[i]; // ERROR 87 aub.length(); // ERROR
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | runtimeArray.vert | 30 float aub[]; 57 aub[3]; 82 aub[i]; // ERROR 87 aub.length(); // ERROR
|
/external/igt-gpu-tools/tools/ |
D | intel_aubdump.in | 11 -o, --output=FILE Name of AUB file. Defaults to COMMAND.aub
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | runtimeArray.vert.out | 113 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 119 0:57 aub: direct index for structure (layout( column_major shared) uniform runtime-sized arr… 120 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 226 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 231 0:82 aub: direct index for structure (layout( column_major shared) uniform runtime-sized arr… 232 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 328 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 420 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 426 0:57 aub: direct index for structure (layout( column_major shared) uniform runtime-sized arr… 427 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
D | runtimeArray.vert.out | 113 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 119 0:57 aub: direct index for structure (layout( column_major shared) uniform runtime-sized arr… 120 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 226 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 231 0:82 aub: direct index for structure (layout( column_major shared) uniform runtime-sized arr… 232 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 328 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 420 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) 426 0:57 aub: direct index for structure (layout( column_major shared) uniform runtime-sized arr… 427 …ime-sized array of int aua, layout( column_major shared) uniform runtime-sized array of float aub}) [all …]
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | temp_arg_nontype_cxx1z.cpp | 27 extern char aub[]; 28 A<char[], aub> k;
|
/external/mesa3d/docs/ |
D | envvars.rst | 242 ``aub``
|
/external/hyphenation-patterns/de/ |
D | hyph-de-ch-1901.pat.txt | 2004 2aub
|
D | hyph-de-1901.pat.txt | 2031 2aub
|
D | hyph-de-1996.pat.txt | 1984 2aub
|
/external/mesa3d/docs/relnotes/ |
D | 20.1.0.rst | 2805 - intel/tools/aub_dump: move aub file initialization to maybe_init()
|
D | 19.1.0.rst | 3534 - intel/error2aub: write GGTT buffers into the aub file
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | iso-639-3_Name_Index.tab | 433 aub Alugu Alugu
|
D | iso-639-3.tab | 419 aub I L Alugu
|
D | language-subtag-registry | 3345 Subtag: aub
|