HomeSort by: relevance | last modified time | path
    Searched refs:chunk (Results 1 - 25 of 47) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_rgp.c 187 static void ac_sqtt_fill_cpu_info(struct sqtt_file_chunk_cpu_info *chunk)
194 chunk->header.chunk_id.type = SQTT_FILE_CHUNK_TYPE_CPU_INFO;
195 chunk->header.chunk_id.index = 0;
196 chunk->header.major_version = 0;
197 chunk->header.minor_version = 0;
198 chunk->header.size_in_bytes = sizeof(*chunk);
200 chunk->cpu_timestamp_freq = 1000000000; /* tick set to 1ns */
202 strncpy((char *)chunk->vendor_id, "Unknown", sizeof(chunk->vendor_id))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/util/perf/
u_trace.c 67 * A "chunk" of trace-events and corresponding timestamp buffer. As
77 /* The number of traces this chunk contains so far: */
97 bool last; /* this chunk is last in batch */
98 bool eof; /* this chunk is last in frame */
104 * one chunk should be designated to free the data.
141 struct u_trace_chunk *chunk = ptr; local
143 chunk->utctx->delete_timestamp_buffer(chunk->utctx, chunk->timestamps);
145 /* Unref payloads attached to this chunk. *
159 struct u_trace_chunk *chunk = list_first_entry(chunks, local
168 struct u_trace_chunk *chunk; local
324 struct u_trace_chunk *chunk = job; local
408 struct u_trace_chunk *chunk = list_first_entry(chunks, local
557 struct u_trace_chunk *chunk = get_chunk(ut, tp->payload_sz); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/standalone/
lima_disasm.c 53 * and consists of a bunch of nested "chunks" where each chunk has a
54 * 4-character tag followed by a 32-bit size, then the contents of the chunk.
74 * This routine just finds the DBIN chunk and returns the binary assuming
81 mbs_chunk chunk; local
90 if (!fread(&chunk, sizeof(chunk), 1, in)) {
95 if (strncmp(chunk.name, "MBS1", 4)) {
100 if (!fread(&chunk, sizeof(chunk), 1, in)) {
105 if (!strncmp(chunk.name, "CFRA", 4))
    [all...]
  /xsrc/external/mit/fontconfig/dist/doc/
extract-man-list.py 45 for chunk in fncs_chunks:
47 start = chunk.find('@')
49 chunk = chunk[start:]
53 lines = [line for line in chunk.split('@') if line.strip()]
edit-sgml.py 63 for chunk in fncs_chunks:
65 start = chunk.find('@')
67 chunk = chunk[start:] variable
71 lines = [line for line in chunk.split('@') if line.strip()]
  /xsrc/external/mit/xf86-video-nsc/dist/src/panel/
platform.c 441 unsigned int chunk = 0; /* The amount to read/wr from THIS block */ local
475 * "width" and "chunk" are in units of whatever data
478 * "width" and "chunk" must be adjusted with "<<size"
491 chunk = (length - offset) >> size;
493 /* Figure the chunk size */
494 width -= chunk;
496 /* Reduce width by the current chunk */
502 chunk = width;
558 switch (chunk) {
585 switch (chunk) {
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_debug.c 117 * current context in the chunk.
131 struct si_log_chunk_shader *chunk = data; local
132 si_shader_selector_reference(chunk->ctx, &chunk->sel, NULL);
133 si_compute_reference(&chunk->program, NULL);
134 FREE(chunk);
140 struct si_log_chunk_shader *chunk = data; local
141 struct si_screen *sscreen = chunk->ctx->screen;
142 si_dump_shader(sscreen, chunk->processor,
143 chunk->shader, f)
160 struct si_log_chunk_shader *chunk = CALLOC_STRUCT(si_log_chunk_shader); local
176 struct si_log_chunk_shader *chunk = CALLOC_STRUCT(si_log_chunk_shader); local
344 struct si_log_chunk_cs *chunk = data; local
362 struct radeon_cmdbuf_chunk *chunk = &cs->prev[prev_idx]; local
393 struct si_log_chunk_cs *chunk = data; local
460 struct si_log_chunk_cs *chunk = calloc(1, sizeof(*chunk)); local
647 struct si_log_chunk_desc_list *chunk = data; local
655 struct si_log_chunk_desc_list *chunk = data; local
757 struct si_log_chunk_desc_list *chunk = local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_debug.c 131 * current context in the chunk.
143 struct si_log_chunk_shader *chunk = data; local
144 si_shader_selector_reference(chunk->ctx, &chunk->sel, NULL);
145 si_compute_reference(&chunk->program, NULL);
146 FREE(chunk);
151 struct si_log_chunk_shader *chunk = data; local
152 struct si_screen *sscreen = chunk->ctx->screen;
153 si_dump_shader(sscreen, chunk->shader, f);
169 struct si_log_chunk_shader *chunk = CALLOC_STRUCT(si_log_chunk_shader) local
183 struct si_log_chunk_shader *chunk = CALLOC_STRUCT(si_log_chunk_shader); local
351 struct si_log_chunk_cs *chunk = data; local
367 struct radeon_cmdbuf_chunk *chunk = &cs->prev[prev_idx]; local
400 struct si_log_chunk_cs *chunk = data; local
457 struct si_log_chunk_cs *chunk = calloc(1, sizeof(*chunk)); local
639 struct si_log_chunk_desc_list *chunk = data; local
646 struct si_log_chunk_desc_list *chunk = data; local
734 struct si_log_chunk_desc_list *chunk = local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
evergreen_compute.h 38 struct compute_memory_item *chunk; member in struct:r600_resource_global
compute_memory_pool.c 66 struct compute_memory_item* chunk, void* data,
197 struct compute_memory_item chunk; local
202 chunk.id = 0;
203 chunk.start_in_dw = 0;
204 chunk.size_in_dw = pool->size_in_dw;
205 compute_memory_transfer(pool, pipe, device_to_host, &chunk,
599 struct compute_memory_item* chunk,
606 int64_t internal_offset = chunk->start_in_dw*4 + offset_in_chunk;
  /xsrc/external/mit/xf86-video-qxl/dist/src/
qxl_image.c 84 /* Chunk */
114 QXLDataChunk *chunk = qxl->bo_funcs->bo_map(bo); local
115 chunk->data_size = n_lines * dest_stride;
117 chunk->data, dest_stride,
127 chunk->next_chunk = 0;
134 chunk->next_chunk = 0;
135 chunk->prev_chunk = 0;
202 uint64_t chunk, prev_chunk; local
208 chunk = image->bitmap.data;
209 while (chunk)
    [all...]
qxl_cursor.c 107 cursor->chunk.next_chunk = 0;
108 cursor->chunk.prev_chunk = 0;
109 cursor->chunk.data_size = size;
111 memcpy (cursor->chunk.data, pCurs->bits->argb, size);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
evergreen_compute.h 38 struct compute_memory_item *chunk; member in struct:r600_resource_global
compute_memory_pool.c 66 struct compute_memory_item* chunk, void* data,
197 struct compute_memory_item chunk; local
202 chunk.id = 0;
203 chunk.start_in_dw = 0;
204 chunk.size_in_dw = pool->size_in_dw;
205 compute_memory_transfer(pool, pipe, device_to_host, &chunk,
598 struct compute_memory_item* chunk,
605 int64_t internal_offset = chunk->start_in_dw*4 + offset_in_chunk;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sb/
sb_ra_coalesce.cpp 71 v->chunk = c;
76 ra_chunk *c1 = e->a->chunk, *c2 = e->b->chunk;
98 (*I)->chunk = c1;
145 if (!e->a->chunk)
148 if (!e->b->chunk)
151 ra_chunk *c1 = e->a->chunk, *c2 = e->b->chunk;
266 if (!v->chunk)
269 cost += v->chunk->cost
    [all...]
sb_valtable.cpp 255 if (chunk)
256 return chunk->is_global();
263 if (chunk)
264 chunk->set_global();
270 if (chunk)
271 chunk->set_prealloc();
277 if (chunk && chunk->is_fixed())
283 if (chunk)
284 chunk->fix()
    [all...]
sb_sched.cpp 1228 (!v->chunk || v->chunk != vi->chunk) &&
1255 if (v->chunk) {
1256 vvec &vv = v->chunk->values;
1261 v->chunk->fix();
1284 if (v->chunk) {
1285 sblog << " in chunk: ";
1286 coalescer::dump_chunk(v->chunk);
1291 if (v->chunk) {
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/sb/
sb_ra_coalesce.cpp 71 v->chunk = c;
76 ra_chunk *c1 = e->a->chunk, *c2 = e->b->chunk;
98 (*I)->chunk = c1;
145 if (!e->a->chunk)
148 if (!e->b->chunk)
151 ra_chunk *c1 = e->a->chunk, *c2 = e->b->chunk;
266 if (!v->chunk)
269 cost += v->chunk->cost
    [all...]
sb_valtable.cpp 255 if (chunk)
256 return chunk->is_global();
263 if (chunk)
264 chunk->set_global();
270 if (chunk)
271 chunk->set_prealloc();
277 if (chunk && chunk->is_fixed())
283 if (chunk)
284 chunk->fix()
    [all...]
sb_sched.cpp 1228 (!v->chunk || v->chunk != vi->chunk) &&
1255 if (v->chunk) {
1256 vvec &vv = v->chunk->values;
1261 v->chunk->fix();
1284 if (v->chunk) {
1285 sblog << " in chunk: ";
1286 coalescer::dump_chunk(v->chunk);
1291 if (v->chunk) {
    [all...]
  /xsrc/external/mit/freetype/dist/src/psaux/
psarrst.h 58 size_t chunk; /* allocation increment in items */ member in struct:CF2_ArrStackRec_
psarrst.c 68 arrstack->chunk = 10; /* chunks of 10 items */
219 /* grow the buffer by one chunk */
221 arrstack, arrstack->allocated + arrstack->chunk ) )
  /xsrc/external/mit/libX11/dist/specs/i18n/compose/
docbook-nl.am 42 XMLTO_HTML_STYLESHEET_FLAGS = -x $(STYLESHEET_SRCDIR)/xorg-chunk.xsl
107 $(STYLESHEET_SRCDIR)/xorg-chunk.xsl
  /xsrc/external/mit/MesaLib/dist/src/freedreno/decode/
crashdec.c 587 dump_mem_pool_chunk(const uint32_t *chunk)
603 memcpy(&fields, chunk, 4 * sizeof(uint32_t));
628 * organized internally into 8-chunk "blocks", and memory is allocated
630 * singly-linked list of blocks, as well as 3-bit start/end chunk
681 * However, there's only one beginning/end chunk offset. Now the
682 * question is, which of A or B is the actual start? I.e. is the chunk
684 * cycle, starting here (read pointer marked with a *) with a chunk
729 uint32_t chunk : 3; member in struct:__anon905::__anon906
744 uint32_t chunk : 3; member in struct:__anon905::__anon907
797 printf("\t\twriter_chunk: %d\n", data1.writer[queue].chunk);
    [all...]
  /xsrc/external/mit/xf86-video-glint/dist/src/
pm2_exa.c 256 int xx, i, fs = pGlint->FIFOSize, chunk, adr; local
283 chunk = min(fs - 1, xx);
284 GLINT_WAIT(chunk);
285 GLINT_WRITE_REG(((chunk - 1) << 16) | (0x11 << 4) |
289 s, chunk);
290 xx -= chunk;
291 s += chunk;

Completed in 41 milliseconds

1 2