Home
last modified time | relevance | path

Searched refs:sect_size (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/freedreno/decode/
Dpgmdump.c274 static void *next_sect(struct state *state, int *sect_size) in next_sect() argument
282 *sect_size = end - state->buf; in next_sect()
285 sect = malloc(ALIGN(*sect_size, 4)); in next_sect()
286 memcpy(sect, state->buf, *sect_size); in next_sect()
288 state->sz -= *sect_size + 4; in next_sect()
416 int i, sect_size; in dump_shaders_a2xx() local
421 struct vs_header *vs_hdr = next_sect(state, &sect_size); in dump_shaders_a2xx()
429 printf("######## VS%d HEADER: (size %d)\n", i, sect_size); in dump_shaders_a2xx()
430 dump_hex((void *)vs_hdr, sect_size); in dump_shaders_a2xx()
434 constants[j] = next_sect(state, &sect_size); in dump_shaders_a2xx()
[all …]
/external/llvm/tools/llvm-objdump/
DMachODump.cpp666 uint32_t sect_size, uint64_t sect_addr, in DumpCstringSection() argument
668 for (uint32_t i = 0; i < sect_size; i++) { in DumpCstringSection()
675 for (; i < sect_size && sect[i] != '\0'; i++) in DumpCstringSection()
677 if (i < sect_size && sect[i] == '\0') in DumpCstringSection()
699 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral4Section() argument
701 for (uint32_t i = 0; i < sect_size; i += sizeof(float)) { in DumpLiteral4Section()
743 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral8Section() argument
745 for (uint32_t i = 0; i < sect_size; i += sizeof(double)) { in DumpLiteral8Section()
775 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral16Section() argument
777 for (uint32_t i = 0; i < sect_size; i += 16) { in DumpLiteral16Section()
[all …]
/external/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp1303 uint32_t sect_size, uint64_t sect_addr, in DumpCstringSection() argument
1305 for (uint32_t i = 0; i < sect_size; i++) { in DumpCstringSection()
1312 for (; i < sect_size && sect[i] != '\0'; i++) in DumpCstringSection()
1314 if (i < sect_size && sect[i] == '\0') in DumpCstringSection()
1336 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral4Section() argument
1338 for (uint32_t i = 0; i < sect_size; i += sizeof(float)) { in DumpLiteral4Section()
1380 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral8Section() argument
1382 for (uint32_t i = 0; i < sect_size; i += sizeof(double)) { in DumpLiteral8Section()
1412 uint32_t sect_size, uint64_t sect_addr, in DumpLiteral16Section() argument
1414 for (uint32_t i = 0; i < sect_size; i += 16) { in DumpLiteral16Section()
[all …]