| /xsrc/external/mit/glu/dist/src/libnurbs/nurbtess/ |
| quicksort.cc | 65 int i, last; local 70 last = left; 73 swap(v, ++last, i); 74 swap(v, left, last); 75 quicksort(v, left, last-1, comp); 76 quicksort(v, last+1, right, comp);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| ir_basic_block.h | 29 ir_instruction *last,
|
| ir_function_can_inline.cpp | 30 * than as the last instruction. In lower_jumps.cpp, we can lower return 67 /* If the function is empty (no last instruction) or does not end with a 70 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local 71 if (last == NULL || !last->as_return())
|
| opt_redundant_jumps.cpp | 61 /* If the last instruction in both branches is a 'break' or a 'continue', 102 /* If the last instruction of a loop body is a 'continue', remove it. 104 ir_instruction *const last = local 107 if (last && (last->ir_type == ir_type_loop_jump) 108 && (((ir_loop_jump *) last)->mode == ir_loop_jump::jump_continue)) { 109 last->remove();
|
| ir_basic_block.cpp | 52 ir_instruction *last, 57 ir_instruction *last = NULL; local 94 last = ir; 97 callback(leader, last, data);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| ir_basic_block.h | 29 ir_instruction *last,
|
| ir_function_can_inline.cpp | 30 * than as the last instruction. In lower_jumps.cpp, we can lower return 67 /* If the function is empty (no last instruction) or does not end with a 70 ir_instruction *last = (ir_instruction *)callee->body.get_tail(); local 71 if (last == NULL || !last->as_return())
|
| opt_redundant_jumps.cpp | 61 /* If the last instruction in both branches is a 'break' or a 'continue', 102 /* If the last instruction of a loop body is a 'continue', remove it. 104 ir_instruction *const last = local 107 if (last && (last->ir_type == ir_type_loop_jump) 108 && (((ir_loop_jump *) last)->mode == ir_loop_jump::jump_continue)) { 109 last->remove();
|
| ir_basic_block.cpp | 52 ir_instruction *last, 57 ir_instruction *last = NULL; local 94 last = ir; 97 callback(leader, last, data);
|
| /xsrc/external/mit/fontconfig/dist/src/ |
| makealias | 25 if [ "$ifdef" != "$last" ] ; then 26 [ -n "$last" ] && echo "#endif /* $last */" >> $TAIL 28 last=$ifdef
|
| makealias.py | 56 last = None variable 62 if define_name != last: 63 if last is not None: 64 tail.write('#endif /* %s */\n' % last) 66 last = define_name variable 70 tail.write('#endif /* %s */\n' % last)
|
| /xsrc/external/mit/libX11/dist/src/ |
| GetFProp.c | 42 register XFontProp *last = prop + fs->n_properties; local 44 while (prop != last) {
|
| /xsrc/external/mit/xorg-server/dist/test/ |
| touch.c | 57 dev.last.num_touches = size; 58 dev.last.touches = calloc(dev.last.num_touches, sizeof(*dev.last.touches)); 59 assert(dev.last.touches); 61 dev.last.touches[i].active = TRUE; 62 dev.last.touches[i].ddx_id = i; 63 dev.last.touches[i].client_id = i * 2; 70 assert(dev.last.num_touches == new_size); 74 DDXTouchPointInfoPtr t = &dev.last.touches[i] [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_util.h | 122 /* We have to check the last bound stage and see if it writes psize */ 123 struct gl_program *last = NULL; local 125 last = ctx->GeometryProgram._Current; 127 last = ctx->TessEvalProgram._Current; 129 last = ctx->VertexProgram._Current; 130 if (last) 131 return !!(last->info.outputs_written &
|
| /xsrc/external/mit/libICE/dist/src/ |
| replywait.c | 48 _IceSavedReplyWait *prev, *last; local 51 last = iceConn->saved_reply_waits; 53 while (last) 55 if (last->reply_wait == replyWait) 58 prev = last; 59 last = last->next;
|
| /xsrc/external/mit/libxcb/dist/src/ |
| xcb_xid.c | 47 if(c->xid.last >= c->xid.max - c->xid.inc + 1) 50 assert(c->xid.last == c->xid.max); 51 if (c->xid.last == 0) { 73 c->xid.last = range->start_id; 78 c->xid.last += c->xid.inc; 80 ret = c->xid.last | c->xid.base; 91 c->xid.last = 0;
|
| /xsrc/external/mit/MesaLib/src/mesa/main/ |
| marshal_generated.h | 1324 uint32_t _mesa_unmarshal_NewList(struct gl_context *ctx, const struct marshal_cmd_NewList *cmd, const uint64_t *last); 1327 uint32_t _mesa_unmarshal_EndList(struct gl_context *ctx, const struct marshal_cmd_EndList *cmd, const uint64_t *last); 1330 uint32_t _mesa_unmarshal_CallList(struct gl_context *ctx, const struct marshal_cmd_CallList *cmd, const uint64_t *last); 1333 uint32_t _mesa_unmarshal_CallLists(struct gl_context *ctx, const struct marshal_cmd_CallLists *cmd, const uint64_t *last); 1336 uint32_t _mesa_unmarshal_DeleteLists(struct gl_context *ctx, const struct marshal_cmd_DeleteLists *cmd, const uint64_t *last); 1340 uint32_t _mesa_unmarshal_ListBase(struct gl_context *ctx, const struct marshal_cmd_ListBase *cmd, const uint64_t *last); 1343 uint32_t _mesa_unmarshal_Begin(struct gl_context *ctx, const struct marshal_cmd_Begin *cmd, const uint64_t *last); 1346 uint32_t _mesa_unmarshal_Bitmap(struct gl_context *ctx, const struct marshal_cmd_Bitmap *cmd, const uint64_t *last); 1349 uint32_t _mesa_unmarshal_Color3b(struct gl_context *ctx, const struct marshal_cmd_Color3b *cmd, const uint64_t *last); 1352 uint32_t _mesa_unmarshal_Color3bv(struct gl_context *ctx, const struct marshal_cmd_Color3bv *cmd, const uint64_t *last); [all...] |
| /xsrc/external/mit/MesaLib/src/panfrost/bifrost/ |
| bifrost_gen_disasm.c | 5 bi_disasm_fma_arshift_i32(FILE *fp, unsigned bits, struct bifrost_regs *srcs, struct bifrost_regs *next_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) 15 bi_disasm_dest_fma(fp, next_regs, last); 28 bi_disasm_fma_arshift_v2i16_0(FILE *fp, unsigned bits, struct bifrost_regs *srcs, struct bifrost_regs *next_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) 36 bi_disasm_dest_fma(fp, next_regs, last); 49 bi_disasm_fma_arshift_v2i16_1(FILE *fp, unsigned bits, struct bifrost_regs *srcs, struct bifrost_regs *next_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) 57 bi_disasm_dest_fma(fp, next_regs, last); 70 bi_disasm_fma_arshift_v4i8_0(FILE *fp, unsigned bits, struct bifrost_regs *srcs, struct bifrost_regs *next_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) 78 bi_disasm_dest_fma(fp, next_regs, last); 91 bi_disasm_fma_arshift_v4i8_1(FILE *fp, unsigned bits, struct bifrost_regs *srcs, struct bifrost_regs *next_regs, unsigned staging_register, unsigned branch_offset, struct bi_constants *consts, bool last) 99 bi_disasm_dest_fma(fp, next_regs, last); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/x86/ |
| 3dnow.c | 59 GLfloat *last, 65 GLfloat *last,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/x86/ |
| 3dnow.c | 59 GLfloat *last, 65 GLfloat *last,
|
| /xsrc/external/bsd/libuuid_ul/dist/ |
| gen_uuid.c | 194 THREAD_LOCAL struct timeval last = {0, 0}; local 242 last.tv_sec = tv1; 243 last.tv_usec = tv2; 248 if ((last.tv_sec == 0) && (last.tv_usec == 0)) { 251 gettimeofday(&last, NULL); 252 last.tv_sec--; 257 if ((tv.tv_sec < last.tv_sec) || 258 ((tv.tv_sec == last.tv_sec) && 259 (tv.tv_usec < last.tv_usec))) [all...] |
| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| hull.cc | 66 TrimVertex *llast = left.last(); 72 fakeleft.init( left.last() ); 76 upper.left->last(); 92 TrimVertex *rlast = right.last(); 94 fakeright.init( right.last() ); 103 lower.right->last();
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/ |
| r200_tcl.h | 41 extern void r200EmitEltPrimitive( struct gl_context *ctx, GLuint first, GLuint last, 43 extern void r200EmitPrimitive( struct gl_context *ctx, GLuint first, GLuint last,
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/ |
| radeon_tcl.h | 42 extern void radeonEmitEltPrimitive( struct gl_context *ctx, GLuint first, GLuint last, 44 extern void radeonEmitPrimitive( struct gl_context *ctx, GLuint first, GLuint last,
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/ |
| bi_opcodes.c.py | 37 last = int(bool(add["last"]) if add else False) 51 BI_SR_COUNT_${sr_count}, ${sr_read}, ${sr_write}, ${last}, ${branch},
|