HomeSort by relevance Sort by last modified time
    Searched defs:elts (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/clang/test/CodeGen/
2002-02-14-EntryNodePreds.c 24 QUAD_EDGE *elts; member in struct:EDGE_STACK
  /external/clang/test/CodeGenCXX/
alignment.cpp 173 int elts[4]; member in struct:test1::Array
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_emit.c 128 const ushort *elts = prim_info->elts; local
183 elts + start,
draw_private.h 175 const void *elts; member in struct:draw_context::__anon19561::__anon19564
329 const unsigned *elts; member in struct:draw_fetch_info
348 const ushort *elts; member in struct:draw_prim_info
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeThreadSet.java 34 private long[] elts; field in class:NativeThreadSet
39 elts = new long[n];
52 if (used >= elts.length) {
53 int on = elts.length;
56 System.arraycopy(elts, 0, nelts, 0, on);
57 elts = nelts;
60 for (int i = start; i < elts.length; i++) {
61 if (elts[i] == 0) {
62 elts[i] = th;
76 elts[i] = 0
    [all...]
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_push.c 56 prim_restart_search_i08(uint8_t *elts, unsigned push, uint8_t index)
60 if (elts[i] == index)
66 prim_restart_search_i16(uint16_t *elts, unsigned push, uint16_t index)
70 if (elts[i] == index)
76 prim_restart_search_i32(uint32_t *elts, unsigned push, uint32_t index)
80 if (elts[i] == index)
88 uint8_t *elts = (uint8_t *)ctx->idxbuf + start; local
96 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
102 ctx->translate->run_elts8(ctx->translate, elts, nr, 0, ctx->push->cur);
106 elts += nr
120 uint16_t *elts = (uint16_t *)ctx->idxbuf + start; local
152 uint32_t *elts = (uint32_t *)ctx->idxbuf + start; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_push.c 33 prim_restart_search_i08(uint8_t *elts, unsigned push, uint8_t index)
37 if (elts[i] == index)
43 prim_restart_search_i16(uint16_t *elts, unsigned push, uint16_t index)
47 if (elts[i] == index)
53 prim_restart_search_i32(uint32_t *elts, unsigned push, uint32_t index)
57 if (elts[i] == index)
65 uint8_t *elts = (uint8_t *)ctx->idxbuf + start; local
73 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
79 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
84 elts += nr
98 uint16_t *elts = (uint16_t *)ctx->idxbuf + start; local
131 uint32_t *elts = (uint32_t *)ctx->idxbuf + start; local
    [all...]
  /external/mesa3d/src/gallium/tests/unit/
translate_test.c 62 unsigned * elts; local
144 elts = align_malloc(count * sizeof *elts, 4096);
169 elts[i] = i;
263 translate[0]->run_elts(translate[0], elts, count, 0, buffer[1]);
265 translate[1]->run_elts(translate[1], elts, count, 0, buffer[2]);
267 translate[0]->run_elts(translate[0], elts, count, 0, buffer[3]);
269 translate[1]->run_elts(translate[1], elts, count, 0, buffer[4]);
  /external/mesa3d/src/mesa/tnl/
t_draw.c 333 /* Translate indices to GLuints and store in VB->Elts.
346 VB->Elts = NULL;
364 VB->Elts = (GLuint *) ptr;
367 GLuint *elts = (GLuint *)get_space(ctx, ib->count * sizeof(GLuint)); local
368 VB->Elts = elts;
373 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
378 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
383 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_dmatmp2.h 55 #error "must have elts to use render template"
75 GLuint *elts, GLuint nr )
80 for ( i = 0 ; i+1 < nr ; i+=2, elts += 2 ) {
81 EMIT_TWO_ELTS( dest, 0, elts[0], elts[1] );
85 EMIT_ELT( dest, 0, elts[0] );
539 * Render elts using hardware indexed verts *
549 GLuint *elts = GET_MESA_ELTS(); local
558 dest = TAG(emit_elts)( ctx, dest, elts+j, nr );
573 GLuint *elts = GET_MESA_ELTS() local
612 GLuint *elts = GET_MESA_ELTS(); local
641 GLuint *elts = GET_MESA_ELTS(); local
692 GLuint *elts = GET_MESA_ELTS(); local
726 GLuint *elts = GET_MESA_ELTS(); local
755 GLuint *elts = GET_MESA_ELTS(); local
782 GLuint *elts = GET_MESA_ELTS(); local
814 GLuint *elts = GET_MESA_ELTS(); local
875 GLuint *elts = GET_MESA_ELTS(); local
    [all...]
t_dd_dmatmp.h 76 static void *TAG(emit_elts)( struct gl_context *ctx, GLuint *elts, GLuint nr,
83 for ( i = 0 ; i+1 < nr ; i+=2, elts += 2 ) {
84 EMIT_TWO_ELTS( 0, elts[0], elts[1] );
89 EMIT_ELT( 0, elts[0] );
500 /* Vertices won't fit in a single buffer or elts not
679 * Render elts using hardware indexed verts *
692 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
703 TAG(emit_elts)( ctx, elts+j, nr, ALLOC_ELTS(nr) )
724 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
761 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
795 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
864 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
900 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
937 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
975 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1015 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1081 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1104 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_split_inplace.c 219 GLuint *elts = malloc(count * sizeof(GLuint)); local
223 elts[j] = prim->start + j;
228 ib.ptr = elts;
246 free(elts);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_push.c 91 prim_restart_search_i08(uint8_t *elts, unsigned push, uint8_t index)
95 if (elts[i] == index)
101 prim_restart_search_i16(uint16_t *elts, unsigned push, uint16_t index)
105 if (elts[i] == index)
111 prim_restart_search_i32(uint32_t *elts, unsigned push, uint32_t index)
115 if (elts[i] == index)
123 uint8_t *restrict elts = (uint8_t *)ctx->idxbuf + start; local
131 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
134 set_edgeflag(ctx, elts[0]);
140 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id
164 uint16_t *restrict elts = (uint16_t *)ctx->idxbuf + start; local
205 uint32_t *restrict elts = (uint32_t *)ctx->idxbuf + start; local
    [all...]
nvc0_vbo_translate.c 111 prim_restart_search_i08(const uint8_t *elts, unsigned push, uint8_t index)
114 for (i = 0; i < push && elts[i] != index; ++i);
119 prim_restart_search_i16(const uint16_t *elts, unsigned push, uint16_t index)
122 for (i = 0; i < push && elts[i] != index; ++i);
127 prim_restart_search_i32(const uint32_t *elts, unsigned push, uint32_t index)
130 for (i = 0; i < push && elts[i] != index; ++i);
149 ef_toggle_search_i08(struct push_context *ctx, const uint8_t *elts, unsigned n)
152 for (i = 0; i < n && ef_value(ctx, elts[i]) == ctx->edgeflag.value; ++i);
157 ef_toggle_search_i16(struct push_context *ctx, const uint16_t *elts, unsigned n)
160 for (i = 0; i < n && ef_value(ctx, elts[i]) == ctx->edgeflag.value; ++i)
209 const uint8_t *restrict elts = (uint8_t *)ctx->idxbuf + start; local
265 const uint16_t *restrict elts = (uint16_t *)ctx->idxbuf + start; local
321 const uint32_t *restrict elts = (uint32_t *)ctx->idxbuf + start; local
    [all...]
  /external/bison/lib/
bitset.h 64 struct ebitset_elt_struct **elts; /* Expanding array of ptrs to elts. */ member in struct:bitset_union::ebitset_struct
ebitset.c 90 #define EBITSET_ELTS(BSET) ((BSET)->e.elts)
256 ebitset_elts *elts; local
259 elts = EBITSET_ELTS (bset);
261 elt = elts[eindex];
263 elts[eindex] = 0;
268 /* Add ELT into elts at index EINDEX of bitset BSET. */
272 ebitset_elts *elts; local
274 elts = EBITSET_ELTS (bset);
275 /* Assume that the elts entry not allocated. */
276 elts[eindex] = elt
301 ebitset_elts *elts; local
350 ebitset_elts *elts; local
393 ebitset_elts *elts; local
579 ebitset_elts *elts; local
665 ebitset_elts *elts; local
847 ebitset_elts *elts; local
895 ebitset_elts *elts; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 30 char[] elts = elt.toCharArray(); local
38 if (elts[0] == '\\')
40 if (elts[1] == '#')
51 for (int i = start; i != elts.length; i++)
53 char c = elts[i];
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tcl.c 111 #define GET_MESA_ELTS() TNL_CONTEXT(ctx)->vb.Elts
114 /* Don't really know how many elts will fit in what's left of cmdbuf,
322 rendering code may decide convert to elts.
326 const GLuint elts = ELTS_BUFSZ(nr_aos) * elt_count; local
329 if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE)
330 || vbuf > index + elts)
333 space_required += index + elts;
475 if (VB->Elts)
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tcl.c 114 #define GET_MESA_ELTS() rmesa->tcl.Elts
117 /* Don't really know how many elts will fit in what's left of cmdbuf,
322 rendering code may decide convert to elts.
325 const GLuint elts = ELTS_BUFSZ(nr_aos); local
330 if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE)
331 || vbuf > index + elts)
334 space_required += index + elts;
402 rmesa->tcl.Elts = VB->Elts;
413 if (rmesa->tcl.Elts)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
clast.h 44 struct clast_expr* elts[1]; member in struct:clast_reduction
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
clast.h 44 struct clast_expr* elts[1]; member in struct:clast_reduction
  /toolchain/binutils/binutils-2.25/libiberty/
hashtab.c 524 size_t nsize, osize, elts; local
531 elts = htab_elements (htab);
535 if (elts * 2 > osize || (elts * 8 < osize && osize > 32))
537 nindex = higher_prime_index (elts * 2);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java 697 char[] elts = elt.toCharArray(); local
705 if (elts[0] == '\\')
707 if (elts[1] == '#')
717 for (int i = start; i != elts.length; i++)
719 char c = elts[i];
    [all...]
  /external/llvm/test/Bindings/OCaml/
core.ml 400 let elts = [| const_int i32_type 4; const_pointer_null pty |] in var
401 let grec_init = const_named_struct nsty elts in
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 229 asdl_seq *elts; member in struct:_expr::__anon43088::__anon43095
301 asdl_seq *elts; member in struct:_expr::__anon43088::__anon43109
306 asdl_seq *elts; member in struct:_expr::__anon43088::__anon43110
468 expr_ty _Py_Set(asdl_seq * elts, int lineno, int col_offset, PyArena *arena);
506 expr_ty _Py_List(asdl_seq * elts, expr_context_ty ctx, int lineno, int
509 expr_ty _Py_Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int

Completed in 640 milliseconds

1 2 3