/src/distrib/utils/ssh/ |
ssh.c | 292 struct cmd cmd_table[]; variable in typeref:struct:cmd[] 308 for (cp = cmd_table; cp->name; cp++) { 371 for (cp = cmd_table; cp->name; cp++) { 381 for (cp = cmd_table; cp->name; cp++) { 521 struct cmd cmd_table[] = { variable in typeref:struct:cmd[]
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
atom.h | 134 uint32_t cmd_table, data_table; member in struct:atom_context
|
amdgpu_atom.c | 628 if (U16(ctx->ctx->cmd_table + 4 + 2 * idx)) 1209 int base = CU16(ctx->cmd_table + 4 + 2 * index); 1341 ctx->cmd_table = CU16(base + ATOM_ROM_CMD_PTR); 1376 if (!CU16(ctx->cmd_table + 4 + 2 * ATOM_CMD_INIT)) 1418 int idx = CU16(ctx->cmd_table + offset); 1419 u16 *mct = (u16 *)(ctx->bios + ctx->cmd_table + 4);
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
atom.h | 132 uint32_t cmd_table, data_table; member in struct:atom_context
|
radeon_atom.c | 642 if (U16(ctx->ctx->cmd_table + 4 + 2 * idx)) 1174 int base = CU16(ctx->cmd_table + 4 + 2 * index); 1316 ctx->cmd_table = CU16(base + ATOM_ROM_CMD_PTR); 1354 if (!CU16(ctx->cmd_table + 4 + 2 * ATOM_CMD_INIT)) 1363 if (CU16(ctx->cmd_table + 4 + 2 * ATOM_CMD_SPDFANCNTL)) 1400 int idx = CU16(ctx->cmd_table + offset); 1401 u16 *mct = (u16 *)(ctx->bios + ctx->cmd_table + 4);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
gvt.h | 323 DECLARE_HASHTABLE(cmd_table, GVT_CMD_HASH_BITS);
|
cmd_parser.c | 659 hash_for_each_possible(gvt->cmd_table, e, hlist, opcode) { 2657 hash_add(gvt->cmd_table, &e->hlist, e->info->opcode); 3095 hash_for_each_safe(gvt->cmd_table, i, tmp, e, hlist) 3098 hash_init(gvt->cmd_table);
|