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

1 2 3

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_queryobj.c 43 "%s: query id %d, result %d\n",
44 __func__, query->Base.Id, (int) query->Base.Result);
58 static struct gl_query_object * radeonNewQueryObject(struct gl_context *ctx, GLuint id)
64 query->Base.Id = id;
69 radeon_print(RADEON_STATE, RADEON_VERBOSE,"%s: query id %d\n", __func__, query->Base.Id);
78 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id);
96 radeon_print(RADEON_STATE, RADEON_VERBOSE, "%s: query id %d, bo %p, offset %d\n", __func__, q->Id, query->bo, query->curr_offset)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_queryobj.c 42 "%s: query id %d, result %d\n",
43 __func__, query->Base.Id, (int) query->Base.Result);
57 static struct gl_query_object * radeonNewQueryObject(struct gl_context *ctx, GLuint id)
63 query->Base.Id = id;
68 radeon_print(RADEON_STATE, RADEON_VERBOSE,"%s: query id %d\n", __func__, query->Base.Id);
77 radeon_print(RADEON_STATE, RADEON_NORMAL, "%s: query id %d\n", __func__, q->Id);
95 radeon_print(RADEON_STATE, RADEON_VERBOSE, "%s: query id %d, bo %p, offset %d\n", __func__, q->Id, query->bo, query->curr_offset)
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/tests/
sharedtex.c 43 int Id;
150 static int id = 0; local
157 h->Id = id++;
341 if (h->Id == 0)
343 else if (h->Id == 1)
345 else if (h->Id == 2)
347 else if (h->Id == 3)
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
dlist.h 59 GLint Id;
pipelineobj.c 133 * Look up the pipeline object for the given ID.
136 * Either a pointer to the pipeline object with the specified ID or \c NULL for
137 * a non-existent ID. The spec defines ID 0 as being technically
141 _mesa_lookup_pipeline_object(struct gl_context *ctx, GLuint id)
143 if (id == 0)
147 _mesa_HashLookupLocked(ctx->Pipeline.Objects, id);
585 /* The ID is immediately freed for re-use */
682 * Determine if ID is the name of an pipeline object.
684 * \param id ID of the potential pipeline object
    [all...]
arbprogram.c 64 lookup_or_create_program(GLuint id, GLenum target, const char* caller)
69 if (id == 0) {
78 newProg = _mesa_lookup_program(ctx, id);
83 id, true);
88 _mesa_HashInsert(ctx->Shared->Programs, id, newProg, isGenName);
105 _mesa_BindProgramARB(GLenum target, GLuint id)
128 newProg = lookup_or_create_program(id, target, "glBindProgram");
134 if (curProg->Id == id) {
189 ctx->VertexProgram.Current->Id == ids[i])
    [all...]
condrender.c 54 * "The error INVALID_VALUE is generated if <id> is not the name of an
62 assert(q->Id == queryId);
85 * "The error INVALID_OPERATION is generated if <id> is the name of a
86 * query object with a target other than SAMPLES_PASSED, or <id> is
atifragshader.c 45 _mesa_new_ati_fragment_shader(struct gl_context *ctx, GLuint id)
50 s->Id = id;
218 _mesa_BindFragmentShaderATI(GLuint id)
231 if (curProg->Id == id) {
236 if (curProg->Id != 0) {
239 _mesa_HashRemove(ctx->Shared->ATIShaders, id);
244 if (id == 0) {
250 _mesa_HashLookup(ctx->Shared->ATIShaders, id);
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_util.h 109 if (vertProg->Id == 0) {
st_cb_program.c 57 st_new_program(struct gl_context *ctx, gl_shader_stage stage, GLuint id,
71 return _mesa_init_gl_program(&prog->Base, stage, id, is_arb_asm);
144 curProg->Id, true);
  /xsrc/external/mit/mesa-demos/dist/src/wgl/
sharedtex_mt.c 40 int id; member in struct:thread_init_arg
49 int Id;
184 win->Id = NumWindows++;
205 (LPVOID) win->Id);
342 if (h->Id == 0)
344 else if (h->Id == 1)
346 else if (h->Id == 2)
348 else if (h->Id == 3)
410 win = &Windows[tia->id];
418 if(tia->id > 0
530 DWORD id; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
pipelineobj.c 108 delete_pipelineobj_cb(UNUSED GLuint id, void *data, void *userData)
131 * Look up the pipeline object for the given ID.
134 * Either a pointer to the pipeline object with the specified ID or \c NULL for
135 * a non-existent ID. The spec defines ID 0 as being technically
139 _mesa_lookup_pipeline_object(struct gl_context *ctx, GLuint id)
141 if (id == 0)
145 _mesa_HashLookupLocked(ctx->Pipeline.Objects, id);
576 /* The ID is immediately freed for re-use */
676 * Determine if ID is the name of an pipeline object
    [all...]
arbprogram.c 68 _mesa_BindProgramARB(GLenum target, GLuint id)
91 if (id == 0) {
101 newProg = _mesa_lookup_program(ctx, id);
104 newProg = ctx->Driver.NewProgram(ctx, target, id, true);
109 _mesa_HashInsert(ctx->Shared->Programs, id, newProg);
120 if (curProg->Id == id) {
174 ctx->VertexProgram.Current->Id == ids[i]) {
181 ctx->FragmentProgram.Current->Id == ids[i]) {
190 /* The ID is immediately available for re-use now *
    [all...]
condrender.c 54 * "The error INVALID_VALUE is generated if <id> is not the name of an
62 assert(q->Id == queryId);
85 * "The error INVALID_OPERATION is generated if <id> is the name of a
86 * query object with a target other than SAMPLES_PASSED, or <id> is
atifragshader.c 43 _mesa_new_ati_fragment_shader(struct gl_context *ctx, GLuint id)
48 s->Id = id;
216 _mesa_BindFragmentShaderATI(GLuint id)
229 if (curProg->Id == id) {
234 if (curProg->Id != 0) {
237 _mesa_HashRemove(ctx->Shared->ATIShaders, id);
242 if (id == 0) {
247 _mesa_HashLookup(ctx->Shared->ATIShaders, id);
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/xdemos/
sharedtex_mt.c 1 /* $Id: sharedtex_mt.c,v 1.1.1.2 2019/03/11 06:59:40 mrg Exp $ */
43 int id; member in struct:thread_init_arg
53 int Id;
175 static int id = 0; local
186 h->Id = id++;
320 if (h->Id == 0)
322 else if (h->Id == 1)
324 else if (h->Id == 2)
326 else if (h->Id == 3
    [all...]
  /xsrc/external/mit/xf86-video-geode/dist/src/gfx/
msr_rdcl.c 138 /* quickly search the entire MBUS for a given device ID without */
157 * device ID found at each node. If a node (aka port) is not populated,
390 * device is the device ID and we have multiple devices of the same type
395 * 2. If two devices have the same device ID and are found on the same
397 * that the first device in the table with this device ID has a lower
399 * 3. After a device ID has been matched, the port is marked as
407 if (MBIU0[i].deviceId == pDev->Id && !(MBIU0[i].claimed)) {
417 if (MBIU1[i].deviceId == pDev->Id && !(MBIU1[i].claimed)) {
427 if (MBIU2[i].deviceId == pDev->Id && !(MBIU2[i].claimed)) {
441 * 0x2000) and checking if the 'id' field matches pDev.Id. This routine i
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_performance_query.c 123 o->Id,
248 DBG("Begin(%d)\n", o->Id);
270 DBG("End(%d)\n", o->Id);
316 DBG("GetData(%d)\n", o->Id);
370 DBG("Delete(%d)\n", o->Id);
brw_cs.c 115 brw_debug_recompile(brw, MESA_SHADER_COMPUTE, cp->program.Id,
185 cp->id = key.base.program_string_id;
brw_gs.c 146 brw_debug_recompile(brw, MESA_SHADER_GEOMETRY, gp->program.Id,
218 gp->id = key.base.program_string_id;
  /xsrc/external/mit/xf86-input-mouse/dist/src/
pnp.c 47 /* serial PnP ID string */
50 char *eisaid; /* EISA ID including mfr ID and product ID */
156 char buf[256]; /* PnP ID string may be up to 256 bytes long */
167 xf86MsgVerb(X_INFO, 2, "%s: PnP-detected protocol ID: %d\n",
218 * Try to elicit a PnP ID as described in
244 * the spec gets confused and do not return the ID string...
317 /* collect PnP COM device ID (2.1.7) */
321 usleep(200000); /* the mouse must send `Begin ID' within 200msec *
    [all...]
  /xsrc/external/mit/xf86-video-nsc/dist/src/gfx/
msr_rdcl.c 244 /* quickly search the entire MBUS for a given device ID without */
263 * device ID found at each node. If a node (aka port) is not populated,
492 /* device is the device ID and we have multiple devices of the same type */
497 /* 2. If two devices have the same device ID and are found on the same */
499 /* that the first device in the table with this device ID has a lower */
501 /* 3. After a device ID has been matched, the port is marked as */
508 if (MBIU0[i].deviceId == pDev->Id && !(MBIU0[i].claimed)) {
518 if (MBIU1[i].deviceId == pDev->Id && !(MBIU1[i].claimed)) {
528 if (MBIU2[i].deviceId == pDev->Id && !(MBIU2[i].claimed)) {
542 * and checking if the 'id' field matchs pDev.Id. This routine i
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
arbprogparse.c 149 printf("____________Fragment program %u ________\n", program->Id);
214 printf("____________Vertex program %u __________\n", program->Id);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
arbprogparse.c 149 printf("____________Fragment program %u ________\n", program->Id);
216 printf("____________Vertex program %u __________\n", program->Id);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
brw_performance_query.c 234 /* These queries are know not to ever change, their config ID has been
243 * When a raw query is used for the first time it's id is set to a value !=
244 * 0. When it stops being used the id returns to 0. No need to reload the
245 * ID when it's already loaded.
248 DBG("Raw query '%s' guid=%s using cached ID: %"PRIu64"\n",
256 DBG("Unable to read query guid=%s ID, falling back to test config\n", query->guid);
259 DBG("Raw query '%s'guid=%s loaded ID: %"PRIu64"\n",
266 dump_perf_query_callback(GLuint id, void *query_void, void *brw_void)
276 id,
285 id,
    [all...]

Completed in 19 milliseconds

1 2 3