Searched refs:tail (Results 1 - 25 of 228) sorted by relevance

12345678910

/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Dvarray.cc76 register long ds = sgn(arc->tail()[0] - arc->prev->tail()[0]);
77 register long dt = sgn(arc->tail()[1] - arc->prev->tail()[1]);
104 ldir[0] = sgn( left->tail()[0] - left->prev->tail()[0] );
105 ldir[1] = sgn( left->tail()[1] - left->prev->tail()[1] );
106 rdir[0] = sgn( right->tail()[0] - right->prev->tail()[
[all...]
H A Duarray.cc61 ulines = (long) ((hi->tail()[0] - lo->tail()[0])/delta) + 3;
68 uarray[0] = lo->tail()[0] - delta/2.0;
H A Darc.cc121 leftpt = rightpt = this->tail()[0];
122 botpt = toppt = this->tail()[1];
125 if ( jarc->tail()[0] < leftpt ||
126 (jarc->tail()[0] <= leftpt && jarc->rhead()[0]<=leftpt)) {
130 if ( jarc->tail()[0] > rightpt ||
131 (jarc->tail()[0] >= rightpt && jarc->rhead()[0] >= rightpt)) {
135 if ( jarc->tail()[1] < botpt ||
136 (jarc->tail()[1] <= botpt && jarc->rhead()[1] <= botpt )) {
140 if ( jarc->tail()[1] > toppt ||
141 (jarc->tail()[
[all...]
H A Dsplitarcs.cc95 if( ((*lptr)->head()[0] <= value) && ((*lptr)->tail()[0] <= value) )
109 if( ((*lptr)->head()[1] <= value) && ((*lptr)->tail()[1] <= value) )
132 if( ! ( jarc1->tail()[0] < (jarc1)->head()[0] ) ) {
134 _glu_dprintf( "s difference %f\n", (jarc1)->tail()[0] - (jarc1)->head()[0] );
139 if( ! ( jarc2->tail()[0] > (jarc2)->head()[0] ) ) {
141 _glu_dprintf( "s difference %f\n", (jarc2)->tail()[0] - (jarc2)->head()[0] );
192 REAL s = jarc1->tail()[0];
193 REAL t1 = jarc1->tail()[1];
194 REAL t2 = jarc2->tail()[1];
231 if( ! ( jarc1->tail()[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Du_vector.c31 * removed from tail. head and tail are free-running uint32_t indices and we
33 * number of bytes in the queue is always head - tail, even in case of
44 vector->tail = 0;
58 if (vector->head - vector->tail == vector->size) {
63 src_tail = vector->tail & (vector->size - 1);
64 dst_tail = vector->tail & (size - 1);
76 split = u_align_u32(vector->tail, vector->size);
77 assert(vector->tail <= split && split < vector->head);
79 split - vector->tail);
[all...]
H A Du_vector.h46 uint32_t tail; member in struct:u_vector
59 return (queue->head - queue->tail) / queue->element_size;
65 assert(vector->tail < vector->head);
74 return (void *)((char *)vector->data + (vector->tail & (vector->size - 1)));
89 for (uint32_t __u_vector_offset = (queue)->tail; \
/xsrc/external/mit/MesaLib/dist/src/util/
H A Du_vector.c31 * removed from tail. head and tail are free-running uint32_t indices and we
33 * number of bytes in the queue is always head - tail, even in case of
49 vector->tail = 0;
63 if (vector->head - vector->tail == vector->size) {
68 src_tail = vector->tail & (vector->size - 1);
69 dst_tail = vector->tail & (size - 1);
81 split = u_align_u32(vector->tail, vector->size);
82 assert(vector->tail <= split && split < vector->head);
84 split - vector->tail);
[all...]
H A Du_fifo.h34 size_t tail; member in struct:util_fifo
46 fifo->tail = 0;
78 if (++fifo->tail >= fifo->size)
79 fifo->tail = 0;
81 *ptr = array[fifo->tail];
H A Du_vector.h51 uint32_t tail; member in struct:u_vector
77 return (queue->head - queue->tail) / queue->element_size;
83 assert(vector->tail < vector->head);
92 return (void *)((char *)vector->data + (vector->tail & (vector->size - 1)));
103 for (uint32_t __u_vector_offset = (queue)->tail; \
/xsrc/external/mit/xf86-video-qxl/dist/src/
H A Dmurmurhash3.c106 const uint8_t * tail; local in function:MurmurHash3_x86_32
130 // tail
132 tail = (const uint8_t*)(data + nblocks*4);
138 case 3: k1 ^= tail[2] << 16;
139 case 2: k1 ^= tail[1] << 8;
140 case 1: k1 ^= tail[0];
178 const uint8_t * tail; local in function:MurmurHash3_x86_128
212 // tail
214 tail = (const uint8_t*)(data + nblocks*16);
223 case 15: k4 ^= tail[1
284 const uint8_t * tail; local in function:MurmurHash3_x64_128
[all...]
/xsrc/external/mit/fontconfig/dist/src/
H A Dmakealias.py24 parser.add_argument('tail')
54 with open(args.tail, 'w') as tail:
55 tail.write('#if HAVE_GNUC_ATTRIBUTE\n')
64 tail.write('#endif /* %s */\n' % last)
65 tail.write('#ifdef %s\n' % define_name)
67 tail.write('# undef %s\n' % name)
69 tail.write('extern __typeof (%s) %s %s;\n' % (name, name, cattr))
70 tail.write('#endif /* %s */\n' % last)
71 tail
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/input/
H A Ddmxmotion.c87 for (i = dmxLocal->head; i != dmxLocal->tail;) {
115 dmxLocal->tail = 0;
118 if (++dmxLocal->tail >= DMX_MOTION_SIZE) dmxLocal->tail = 0;
119 if (dmxLocal->head == dmxLocal->tail)
123 dmxLocal->history[OFFSET(dmxLocal->tail,0)] = time;
130 dmxLocal->history[OFFSET(dmxLocal->tail,i+1)]
133 dmxLocal->history[OFFSET(dmxLocal->tail,i+1)] = 0;
137 dmxLocal->history[OFFSET(dmxLocal->tail,i+i)]
/xsrc/external/mit/libFS/dist/src/
H A DFSSync.c70 ((_FSQEvent *) svr->tail)->next = _FSqfree;
72 svr->head = svr->tail = NULL;
H A DFSNextEv.c69 svr->tail = NULL;
/xsrc/external/mit/libxcb/dist/src/
H A Dxcb_list.c45 node **tail; member in struct:_xcb_map
57 list->tail = &list->head;
84 *list->tail = cur;
85 list->tail = &cur->next;
99 list->tail = cur;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_fifo.h34 size_t tail; member in struct:util_fifo
46 fifo->tail = 0;
78 if (++fifo->tail >= fifo->size)
79 fifo->tail = 0;
81 *ptr = array[fifo->tail];
H A Du_ringbuffer.c18 unsigned tail; member in struct:util_ringbuffer
61 return (ring->tail - (ring->head + 1)) & ring->mask;
135 ring_packet = &ring->buf[ring->tail];
149 packet[i] = ring->buf[ring->tail];
150 ring->tail++;
151 ring->tail &= ring->mask;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_scene_queue.c56 /* These values wrap around, so that head == tail means empty. When used
61 unsigned tail; member in struct:lp_scene_queue
104 while (queue->head == queue->tail)
107 if (queue->head == queue->tail) {
122 /** Add an lp_scene to tail of queue */
129 while (queue->tail - queue->head >= SCENE_QUEUE_SIZE)
132 queue->scenes[queue->tail++ % SCENE_QUEUE_SIZE] = scene;
/xsrc/external/mit/glu/dist/src/libnurbs/nurbtess/
H A DpolyDBG.cc63 if(area(poly->head(), poly->tail(), poly->getNext()->tail()) < 0.00000)
67 if(area(temp->head(), temp->tail(), temp->getNext()->tail()) < 0.00000)
79 cur_sign = compV2InX(poly->tail(), poly->head());
81 n_changes = (compV2InX(poly->getPrev()->tail(), poly->getPrev()->head())
87 cur_sign = compV2InX(temp->tail(), temp->head());
107 if( fabs(poly->head()[0] - poly->tail()[0]) <= fabs(poly->head()[1]-poly->tail()[1]))
112 else if(poly->head()[1] == poly->tail()[
[all...]
/xsrc/external/mit/xterm/dist/unicode/
H A Dmake-precompose.sh18 cat precompose.c.tail
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_worklist.c111 unsigned tail = (w->start + w->count - 1) % w->size; local in function:nir_block_worklist_push_tail
113 w->blocks[tail] = block;
122 unsigned tail = (w->start + w->count - 1) % w->size; local in function:nir_block_worklist_peek_tail
124 return w->blocks[tail];
132 unsigned tail = (w->start + w->count - 1) % w->size; local in function:nir_block_worklist_pop_tail
136 BITSET_CLEAR(w->blocks_present, w->blocks[tail]->index);
137 return w->blocks[tail];
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_worklist.c111 unsigned tail = (w->start + w->count - 1) % w->size; local in function:nir_block_worklist_push_tail
113 w->blocks[tail] = block;
122 unsigned tail = (w->start + w->count - 1) % w->size; local in function:nir_block_worklist_peek_tail
124 return w->blocks[tail];
132 unsigned tail = (w->start + w->count - 1) % w->size; local in function:nir_block_worklist_pop_tail
136 BITSET_CLEAR(w->blocks_present, w->blocks[tail]->index);
137 return w->blocks[tail];
/xsrc/external/mit/freetype/dist/builds/atari/
H A Ddeflinejoiner.awk90 tail, removed_length, k )
92 tail = substr( logical_line, pos )
93 sub( /^[ \t]+/, " ", tail )
94 removed_length = length( logical_line ) - pos - length( tail ) + 1
95 logical_line = substr( logical_line, 0, pos - 1 ) tail
121 tail = substr( logical_line, pos + removed_length )
122 logical_line = substr( logical_line, 0, pos - 1 ) tail
132 tail, paren_depth, junk, i, j, k, l )
136 tail = logical_line
137 sub( /^[ \t]*#[ \t]*define[ \t]+[0-9A-Za-z_]+/, "", tail )
[all...]
/xsrc/external/mit/libX11/dist/src/
H A DSync.c52 ((_XQEvent *)dpy->tail)->next = dpy->qfree;
54 dpy->head = dpy->tail = NULL;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_scene.h99 struct cmd_block *tail; member in struct:cmd_bin
305 struct cmd_block *tail = bin->tail; local in function:lp_scene_bin_command
311 if (tail == NULL || tail->count == CMD_BLOCK_MAX) {
312 tail = lp_scene_new_cmd_block( scene, bin );
313 if (!tail) {
316 assert(tail->count == 0);
320 unsigned i = tail->count;
321 tail
[all...]

Completed in 29 milliseconds

12345678910