Searched defs:dwords (Results 1 - 25 of 49) sorted by last modified time

12

/external/syslinux/gpxe/src/drivers/infiniband/
H A Dlinda.c120 * @v dwords Register buffer to read into
123 static void linda_readq ( struct linda *linda, uint32_t *dwords, argument
129 : : "r" ( dwords ), "r" ( addr ) : "memory" );
132 virt_to_phys ( addr ), dwords[1], dwords[0] );
135 linda_readq ( (_linda), (_ptr)->u.dwords, (_offset) )
145 * @v dwords Register buffer to write
148 static void linda_writeq ( struct linda *linda, const uint32_t *dwords, argument
153 virt_to_phys ( addr ), dwords[1], dwords[
[all...]
/external/syslinux/gpxe/src/drivers/net/phantom/
H A Dphantom.c420 uint32_t dwords[2]; member in union:__anon21801
431 cache.dwords )) !=0 )
1431 } dwords; member in union:phantom_clp_data
1509 phantom_writel ( phantom, be32_to_cpu ( data.dwords.lo ),
1511 phantom_writel ( phantom, be32_to_cpu ( data.dwords.hi ),
1539 data.dwords.lo = cpu_to_be32 ( phantom_readl ( phantom,
1541 data.dwords.hi = cpu_to_be32 ( phantom_readl ( phantom,
1906 uint32_t dwords[3]; member in union:__anon21803
1911 /* Read the three dwords that include this MAC address and one other */
1915 u.dwords[
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dib_packet.h22 uint32_t dwords[2]; member in union:ib_gid_half::__anon22287
31 uint32_t dwords[4]; member in union:ib_gid::__anon22288
H A Dpcibackup.h16 uint32_t dwords[64]; member in struct:pci_config_backup
H A Dsrp.h27 uint32_t dwords[2]; member in struct:srp_tag
/external/syslinux/libinstaller/
H A Dsyslxint.h196 uint32_t dwords; member in struct:patch_area
/external/mesa3d/src/mesa/main/
H A Ddlist.c534 /** How many 4-byte dwords to store a pointer */
544 GLuint dwords[POINTER_DWORDS]; member in union:pointer
563 dest[i].ui = p.dwords[i];
577 p.dwords[i] = node[i].ui;
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.c314 const unsigned *dwords = (const unsigned *)tokens; local
322 debug_printf("0x%08x,\n", dwords[i]);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_ringbuffer.h11 unsigned dwords:8; member in struct:util_packet
17 struct util_ringbuffer *util_ringbuffer_create( unsigned dwords );
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_disasm.c519 print_instr(uint32_t *dwords, int n, enum debug_t debug) argument
521 struct instr *instr = (struct instr *)dwords;
527 printf("%08x %08x %08x %08x ", dwords[0], dwords[1], dwords[2],
528 dwords[3]);
604 etna_disasm(uint32_t *dwords, int sizedwords, enum debug_t debug) argument
611 print_instr(&dwords[i], i / 4, debug);
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Ddisasm-a2xx.c214 static int disasm_alu(uint32_t *dwords, uint32_t alu_off, argument
217 instr_alu_t *alu = (instr_alu_t *)dwords;
222 dwords[0], dwords[1], dwords[2]);
453 static int disasm_fetch(uint32_t *dwords, uint32_t alu_off, int level, int sync) argument
455 instr_fetch_t *fetch = (instr_fetch_t *)dwords;
460 dwords[0], dwords[1], dwords[
595 disasm_a2xx(uint32_t *dwords, int sizedwords, int level, enum shader_t type) argument
[all...]
H A Dfd2_emit.c69 unsigned size = align(cb->buffer_size, 4) / 4; /* size in dwords */
83 const uint32_t *dwords; local
86 dwords = cb->user_buffer;
89 dwords = fd_bo_map(rsc->bo);
92 dwords = (uint32_t *)(((uint8_t *)dwords) + cb->buffer_offset);
97 OUT_RING(ring, *(dwords++));
H A Dir-a2xx.c42 static int instr_emit(struct ir2_instruction *instr, uint32_t *dwords,
129 uint32_t *ptr, *dwords = NULL; local
149 ptr = dwords = calloc(4, info->sizedwords);
165 assert((ptr - dwords) <= info->sizedwords);
179 assert((ptr - dwords) <= info->sizedwords);
184 return dwords;
187 free(dwords);
278 uint32_t *dwords, uint32_t idx,
281 instr_fetch_t *fetch = (instr_fetch_t *)dwords;
362 static int instr_emit_alu(struct ir2_instruction *instr, uint32_t *dwords, argument
277 instr_emit_fetch(struct ir2_instruction *instr, uint32_t *dwords, uint32_t idx, struct ir2_shader_info *info) argument
480 instr_emit(struct ir2_instruction *instr, uint32_t *dwords, uint32_t idx, struct ir2_shader_info *info) argument
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_emit.c54 * prsc or dwords: buffer containing constant values
60 const uint32_t *dwords, struct pipe_resource *prsc)
88 dwords = (uint32_t *)&((uint8_t *)dwords)[offset];
91 OUT_RING(ring, dwords[i]);
58 fd3_emit_const(struct fd_ringbuffer *ring, enum shader_t type, uint32_t regid, uint32_t offset, uint32_t sizedwords, const uint32_t *dwords, struct pipe_resource *prsc) argument
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_emit.c54 * prsc or dwords: buffer containing constant values
60 const uint32_t *dwords, struct pipe_resource *prsc)
88 dwords = (uint32_t *)&((uint8_t *)dwords)[offset];
91 OUT_RING(ring, dwords[i]);
58 fd4_emit_const(struct fd_ringbuffer *ring, enum shader_t type, uint32_t regid, uint32_t offset, uint32_t sizedwords, const uint32_t *dwords, struct pipe_resource *prsc) argument
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_emit.c52 * prsc or dwords: buffer containing constant values
58 const uint32_t *dwords, struct pipe_resource *prsc)
87 dwords = (uint32_t *)&((uint8_t *)dwords)[offset];
90 OUT_RING(ring, dwords[i]);
695 t7 opcode: CP_PERFCOUNTER_ACTION (50) (4 dwords)
697 t7 opcode: CP_PERFCOUNTER_ACTION (50) (4 dwords)
700 t7 opcode: CP_WAIT_FOR_IDLE (26) (1 dwords)
56 fd5_emit_const(struct fd_ringbuffer *ring, enum shader_t type, uint32_t regid, uint32_t offset, uint32_t sizedwords, const uint32_t *dwords, struct pipe_resource *prsc) argument
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_util.h210 * NOTE: OUT_RELOC*() is 2 dwords (64b) on a5xx+
355 uint32_t dwords; local
357 dwords = fd_ringbuffer_emit_reloc_ring_full(ring, target, i) / 4;
358 assert(dwords > 0);
359 OUT_RING(ring, dwords);
380 uint32_t dwords; local
382 dwords = fd_ringbuffer_emit_reloc_ring_full(ring, target, i) / 4;
383 assert(dwords > 0);
384 OUT_RING(ring, dwords);
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Ddisasm-a3xx.c829 static void print_instr(uint32_t *dwords, int level, int n) argument
831 instr_t *instr = (instr_t *)dwords;
836 printf("%s%04d[%08xx_%08xx] ", levels[level], n, dwords[1], dwords[0]);
870 int disasm_a3xx(uint32_t *dwords, int sizedwords, int level, enum shader_t type) argument
877 print_instr(&dwords[i], level, i/2);
H A Dir3.c563 uint32_t *ptr, *dwords; local
588 ptr = dwords = calloc(4, info->sizedwords);
592 int ret = emit[opc_cat(instr->opc)](instr, dwords, info);
596 dwords += 2;
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_batchbuffer.h44 size_t dwords)
46 return dwords * 4 <= i915_winsys_batchbuffer_space(batch);
43 i915_winsys_batchbuffer_check(struct i915_winsys_batchbuffer *batch, size_t dwords) argument
H A Di915_state_dynamic.c66 unsigned dwords)
70 if (!memcmp(src, &i915->current.dynamic[offset], dwords * 4))
73 for (i = 0; i < dwords; i++) {
63 set_dynamic_array(struct i915_context *i915, unsigned offset, const unsigned *src, unsigned dwords) argument
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_blit.c377 unsigned dwords = local
385 if (!r300->rws->cs_check_space(r300->cs, dwords)) {
H A Dr300_emit.c1417 unsigned dwords = 0; local
1421 dwords += atom->size;
1426 dwords += 32;
1428 return dwords;
1433 unsigned dwords = 0; local
1436 dwords += 26; /* emit_query_end */
1437 dwords += r300->hyperz_state.size + 2; /* emit_hyperz_end + zcache flush */
1439 dwords += 2; /* emit_index_bias */
1440 dwords += 3; /* MSPOS */
1442 return dwords;
[all...]
H A Dr300_render.c186 * Check if the requested number of dwords is available in the CS and
190 * \param cs_dwords The number of dwords to reserve in CS.
288 * Check if the requested number of dwords is available in the CS and
293 * \param cs_dwords The number of dwords to reserve in CS.
343 /* Size of the vertex, in dwords. */
346 /* The number of dwords for this draw operation. */
347 unsigned dwords = 4 + info->count * vertex_size; local
349 /* Size of the vertex element, in dwords. */
353 * in dwords. */
362 if (!r300_prepare_for_rendering(r300, PREP_EMIT_STATES, NULL, dwords,
973 unsigned dwords = 6; local
1117 unsigned dwords = 13 + vertex_size + local
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A Dr600_pipe_common.c137 unsigned dwords = 6; local
141 dwords *= 2;
144 dwords += 2;
146 return dwords;

Completed in 374 milliseconds

12