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

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_queryobj.h 44 radeon->query.queryobj.cmd_size = (SZ);
radeon_ioctl.h 111 rmesa->hw.ATOM.cmd_size * 4)
116 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) {
radeon_queryobj.c 201 return atom->cmd_size;
radeon_common_context.h 130 int cmd_size; /* size in bytes */ member in struct:radeon_state_atom
radeon_state_init.c 191 return FLAG ? atom->cmd_size + (ADD) : 0; \
198 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
397 // if (atom->cmd_size == CTX_STATE_SIZE_NEWDRM) {
455 uint32_t dwords = atom->cmd_size;
516 rmesa->hw.ATOM.cmd_size = SZ; \
    [all...]
radeon_common.c 445 fprintf(stderr, " emit %s %d/%d\n", state->name, dwords, state->cmd_size);
448 if (dwords > state->cmd_size)
449 dwords = state->cmd_size;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_queryobj.h 44 radeon->query.queryobj.cmd_size = (SZ);
radeon_ioctl.h 111 rmesa->hw.ATOM.cmd_size * 4)
116 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) {
radeon_queryobj.c 201 return atom->cmd_size;
radeon_common_context.h 130 int cmd_size; /* size in bytes */ member in struct:radeon_state_atom
radeon_state_init.c 191 return FLAG ? atom->cmd_size + (ADD) : 0; \
198 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
397 // if (atom->cmd_size == CTX_STATE_SIZE_NEWDRM) {
455 uint32_t dwords = atom->cmd_size;
516 rmesa->hw.ATOM.cmd_size = SZ; \
    [all...]
radeon_common.c 445 fprintf(stderr, " emit %s %d/%d\n", state->name, dwords, state->cmd_size);
448 if (dwords > state->cmd_size)
449 dwords = state->cmd_size;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_ioctl.h 104 rmesa->hw.ATOM.cmd_size * 4)
110 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) {
r200_state_init.c 226 return (FLAG) ? atom->cmd_size + (ADD) : 0; \
233 return (!rmesa->radeon.TclFallback && !ctx->VertexProgram._Enabled && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
240 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
248 return (!rmesa->radeon.TclFallback && ctx->VertexProgram._Enabled && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
331 return atom->cmd_size;
339 return atom->cmd_size;
429 if (atom->cmd_size == CTX_STATE_SIZE_NEWDRM)
516 if (atom->cmd_size == CTX_STATE_SIZE_NEWDRM) {
526 uint32_t dwords = atom->cmd_size + 2;
570 if (!r200->state.texture.unit[i].unitneeded && !(dwords <= atom->cmd_size))
    [all...]
r200_vertprog.c 142 /* hack up the cmd_size so not the whole state atom is emitted always. */
143 rmesa->hw.vpp[0].cmd_size =
149 rmesa->hw.vpp[1].cmd_size = 1 + 4 * (paramList->NumParameters - 96);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_ioctl.h 104 rmesa->hw.ATOM.cmd_size * 4)
110 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) {
r200_state_init.c 226 return (FLAG) ? atom->cmd_size + (ADD) : 0; \
233 return (!rmesa->radeon.TclFallback && !ctx->VertexProgram._Enabled && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
240 return (!rmesa->radeon.TclFallback && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
248 return (!rmesa->radeon.TclFallback && ctx->VertexProgram._Enabled && (FLAG)) ? atom->cmd_size + (ADD) : 0; \
331 return atom->cmd_size;
339 return atom->cmd_size;
429 if (atom->cmd_size == CTX_STATE_SIZE_NEWDRM)
516 if (atom->cmd_size == CTX_STATE_SIZE_NEWDRM) {
526 uint32_t dwords = atom->cmd_size + 2;
570 if (!r200->state.texture.unit[i].unitneeded && !(dwords <= atom->cmd_size))
    [all...]
r200_vertprog.c 142 /* hack up the cmd_size so not the whole state atom is emitted always. */
143 rmesa->hw.vpp[0].cmd_size =
149 rmesa->hw.vpp[1].cmd_size = 1 + 4 * (paramList->NumParameters - 96);
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
cmd_buffer_helper_test.cc 154 void AddUniqueCommandWithExpect(error::Error _return, int cmd_size) {
155 EXPECT_GE(cmd_size, 1);
156 EXPECT_LT(cmd_size, kTotalNumCommandEntries);
157 int arg_count = cmd_size - 1;
173 void TestCommandWrappingFull(int32 cmd_size, int32 start_commands) {
174 const int32 num_args = cmd_size - 1;
175 EXPECT_EQ(kTotalNumCommandEntries % cmd_size, 0);
190 (start_commands * cmd_size) % kTotalNumCommandEntries);
192 (start_commands * cmd_size) % kTotalNumCommandEntries);
198 for (int32 ii = 0; ii < kTotalNumCommandEntries / cmd_size + 2; ++ii)
    [all...]
  /external/libnfc-nci/src/nfa/hci/
nfa_hci_api.c 585 UINT16 cmd_size,
602 if ((cmd_size && (p_data == NULL)) || (cmd_size > NFA_MAX_HCI_CMD_LEN))
604 NFA_TRACE_API1 ("NFA_HciSendCommand (): Invalid cmd size:0x%02x", cmd_size);
618 p_msg->cmd_len = cmd_size;
620 if (cmd_size)
621 memcpy (p_msg->data, p_data, cmd_size);
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
psb_deblock.c 558 uint32_t *cmd_size; local
569 cmd_size = cmdbuf->regio_idx++;
599 *cmd_size = (cmdbuf->regio_idx - (uint32_t *)cmdbuf->regio_base - 1);
  /external/libnfc-nci/src/nfa/include/
nfa_hci_api.h 491 UINT16 cmd_size,
  /external/fio/
server.c 212 size_t cmd_size = 0, pdu_offset = 0; local
229 cmd_size = sizeof(cmd) + cmd.pdu_len + 1;
232 cmd_size += cmd.pdu_len;
234 if (cmd_size / 1024 > FIO_SERVER_MAX_CMD_MB * 1024) {
235 log_err("fio: cmd+pdu too large (%llu)\n", (unsigned long long) cmd_size);
240 tmp = realloc(cmdret, cmd_size);
    [all...]
  /external/lldb/source/Host/macosx/
Symbols.cpp 121 uint32_t cmd_size = data.GetU32(&data_offset); local
129 data_offset = cmd_offset + cmd_size;
    [all...]
  /hardware/intel/img/psb_video/src/
psb_drv_debug.c 601 uint32_t cmd_size = cmd_size_in_bytes / sizeof(uint32_t); local
602 uint32_t *cmd_end = cmd_idx + cmd_size;
621 DBH("CMD BUFFER [%08x] - [%08x], %08x bytes, %08x dwords\n", (uint32_t) cmd_idx, cmd_end, cmd_size_in_bytes, cmd_size);
    [all...]

Completed in 645 milliseconds

1 2