HomeSort by relevance Sort by last modified time
    Searched refs:dwords (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_shader_dump.h 39 unsigned dwords,
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_disasm.h 38 etna_disasm(uint32_t *dwords, int sizedwords, enum debug_t debug);
  /external/mesa3d/src/gallium/auxiliary/util/
u_ringbuffer.h 11 unsigned dwords:8; member in struct:util_packet
17 struct util_ringbuffer *util_ringbuffer_create( unsigned dwords );
u_ringbuffer.c 24 struct util_ringbuffer *util_ringbuffer_create( unsigned dwords )
30 assert(util_is_power_of_two(dwords));
32 ring->buf = MALLOC( dwords * sizeof(unsigned) );
36 ring->mask = dwords - 1;
83 assert(packet->dwords <= ring->mask);
87 while (util_ringbuffer_space(ring) < packet->dwords)
92 for (i = 0; i < packet->dwords; i++) {
94 /* Copy all dwords of the packet. Note we're abusing the
139 if (ring_packet->dwords > ring->mask + 1 - util_ringbuffer_space(ring) ||
140 ring_packet->dwords > max_dwords)
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/
disasm.h 39 int disasm_a2xx(uint32_t *dwords, int sizedwords, int level, enum shader_t type);
40 int disasm_a3xx(uint32_t *dwords, int sizedwords, int level, enum shader_t type);
  /external/compiler-rt/lib/builtins/
paritydi2.c 22 dwords x;
ashldi3.c 27 dwords input;
28 dwords result;
cmpdi2.c 25 dwords x;
27 dwords y;
clzdi2.c 24 dwords x;
ctzdi2.c 24 dwords x;
ffsdi2.c 24 dwords x;
ashrdi3.c 27 dwords input;
28 dwords result;
muldi3.c 23 dwords r;
48 dwords x;
50 dwords y;
52 dwords r;
  /device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
ashldi3.c 67 dwords input;
68 dwords result;
ashrdi3.c 67 dwords input;
68 dwords result;
muldi3.c 67 dwords r;
90 dwords x;
92 dwords y;
94 dwords r;
Llvm_int_lib.h 68 } dwords; typedef in typeref:union:__anon4934
  /external/mesa3d/src/gallium/drivers/i915/
i915_batch.h 35 #define BEGIN_BATCH(dwords) \
36 (i915_winsys_batchbuffer_check(i915->batch, dwords))
  /device/linaro/bootloader/arm-trusted-firmware/lib/compiler-rt/builtins/
ctzdi2.c 24 dwords x;
  /external/syslinux/gpxe/src/include/gpxe/
pcibackup.h 16 uint32_t dwords[64]; member in struct:pci_config_backup
  /external/syslinux/gpxe/src/net/infiniband/
ib_pathrec.c 60 "failed: %s\n", ibdev, htonl ( dgid->u.dwords[0] ),
61 htonl ( dgid->u.dwords[1] ),
62 htonl ( dgid->u.dwords[2] ),
63 htonl ( dgid->u.dwords[3] ), strerror ( rc ) );
72 "rate %d\n", ibdev, htonl ( dgid->u.dwords[0] ),
73 htonl ( dgid->u.dwords[1] ), htonl ( dgid->u.dwords[2] ),
74 htonl ( dgid->u.dwords[3] ), path->av.lid, path->av.sl,
262 ibdev, htonl ( gid->u.dwords[0] ),
263 htonl ( gid->u.dwords[1] ), htonl ( gid->u.dwords[2] )
    [all...]
ib_mcast.c 102 ntohl ( gid->u.dwords[0] ), ntohl ( gid->u.dwords[1] ),
103 ntohl ( gid->u.dwords[2] ), ntohl ( gid->u.dwords[3] ),
148 ibdev, qp->qpn, ntohl ( gid->u.dwords[0] ),
149 ntohl ( gid->u.dwords[1] ), ntohl ( gid->u.dwords[2] ),
150 ntohl ( gid->u.dwords[3] ) );
199 ibdev, qp->qpn, ntohl ( gid->u.dwords[0] ),
200 ntohl ( gid->u.dwords[1] ), ntohl ( gid->u.dwords[2] )
    [all...]
  /device/google/contexthub/firmware/lib/builtins/
aeabi_llsl.c 27 dwords input;
28 dwords result;
  /external/syslinux/gpxe/src/drivers/bus/
pcibackup.c 66 for ( offset = 0, dword = backup->dwords ; offset < 0x100 ;
85 for ( offset = 0, dword = backup->dwords ; offset < 0x100 ;
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_constant_state.c 40 int dwords = brw->gen >= 8 ? 11 : 7; local
41 BEGIN_BATCH(dwords);
42 OUT_BATCH(opcode << 16 | (dwords - 2));

Completed in 345 milliseconds

1 2 3 4 5