HomeSort by relevance Sort by last modified time
    Searched refs:ring (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_ringbuffer.c 26 struct util_ringbuffer *ring = CALLOC_STRUCT(util_ringbuffer); local
27 if (ring == NULL)
32 ring->buf = MALLOC( dwords * sizeof(unsigned) );
33 if (ring->buf == NULL)
36 ring->mask = dwords - 1;
38 pipe_condvar_init(ring->change);
39 pipe_mutex_init(ring->mutex);
40 return ring;
43 FREE(ring->buf);
44 FREE(ring);
    [all...]
u_ringbuffer.h 19 void util_ringbuffer_destroy( struct util_ringbuffer *ring );
21 void util_ringbuffer_enqueue( struct util_ringbuffer *ring,
24 enum pipe_error util_ringbuffer_dequeue( struct util_ringbuffer *ring,
  /external/mesa3d/src/gallium/auxiliary/util/
u_ringbuffer.c 26 struct util_ringbuffer *ring = CALLOC_STRUCT(util_ringbuffer); local
27 if (ring == NULL)
32 ring->buf = MALLOC( dwords * sizeof(unsigned) );
33 if (ring->buf == NULL)
36 ring->mask = dwords - 1;
38 pipe_condvar_init(ring->change);
39 pipe_mutex_init(ring->mutex);
40 return ring;
43 FREE(ring->buf);
44 FREE(ring);
    [all...]
u_ringbuffer.h 19 void util_ringbuffer_destroy( struct util_ringbuffer *ring );
21 void util_ringbuffer_enqueue( struct util_ringbuffer *ring,
24 enum pipe_error util_ringbuffer_dequeue( struct util_ringbuffer *ring,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_scene_queue.c 53 struct util_ringbuffer *ring; member in struct:lp_scene_queue
66 queue->ring = util_ringbuffer_create( MAX_SCENE_QUEUE *
68 if (queue->ring == NULL)
83 util_ringbuffer_destroy(queue->ring);
97 ret = util_ringbuffer_dequeue(queue->ring,
118 util_ringbuffer_enqueue(queue->ring, &packet.header);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene_queue.c 53 struct util_ringbuffer *ring; member in struct:lp_scene_queue
66 queue->ring = util_ringbuffer_create( MAX_SCENE_QUEUE *
68 if (queue->ring == NULL)
83 util_ringbuffer_destroy(queue->ring);
97 ret = util_ringbuffer_dequeue(queue->ring,
118 util_ringbuffer_enqueue(queue->ring, &packet.header);
  /external/chromium_org/third_party/WebKit/Source/core/css/
svg.css 61 outline: auto 5px -webkit-focus-ring-color
  /external/speex/libspeex/
scal.c 73 float (*ring)[ALLPASS_ORDER]; member in struct:SpeexDecorrState_
100 st->ring = speex_alloc(channels*ALLPASS_ORDER*sizeof(float));
111 st->ring[ch][i] = 0;
157 float *ring; local
163 ring = st->ring[ch];
187 - alpha*(ring[ringID]
188 - beta*ring[ringID+1>=order?0:ringID+1]);
189 ring[ringID++]=st->y[i];
210 ring[i] = 0
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect1.asm 21 ; 32-bit ring-0 protected mode code that interacts
24 ; DPMI, and called through a call-gate from ring-3.
  /external/qemu/android/skin/
trackball.h 23 int ring; member in struct:SkinTrackBallParameters
trackball.c 210 trackball_init( TrackBall ball, int diameter, int ring,
214 int diameter2 = diameter + ring*2;
305 int diameter2 = diameter + 2*ring;
354 } else if (r0 <= radius2) { /* ring pixel */
572 params->ring,
  /external/chromium/net/tools/flip_server/
output_ordering.h 27 PriorityMapPointer(): ring(NULL), alarm_enabled(false) {}
28 PriorityRing* ring; member in struct:net::OutputOrdering::PriorityMapPointer
output_ordering.cc 85 pmp->ring = &first_data_senders_;
133 sitpmi->second.ring = &(pmi->second);
174 pmp.ring->erase(pmp.it);
  /external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
sha256-mips.S 91 sw $8,0($29) # offload to ring buffer
143 sw $9,4($29) # offload to ring buffer
195 sw $10,8($29) # offload to ring buffer
247 sw $11,12($29) # offload to ring buffer
299 sw $12,16($29) # offload to ring buffer
351 sw $13,20($29) # offload to ring buffer
403 sw $14,24($29) # offload to ring buffer
455 sw $15,28($29) # offload to ring buffer
507 sw $16,32($29) # offload to ring buffer
559 sw $17,36($29) # offload to ring buffe
    [all...]
  /external/openssl/crypto/sha/asm/
sha256-mips.S 91 sw $8,0($29) # offload to ring buffer
143 sw $9,4($29) # offload to ring buffer
195 sw $10,8($29) # offload to ring buffer
247 sw $11,12($29) # offload to ring buffer
299 sw $12,16($29) # offload to ring buffer
351 sw $13,20($29) # offload to ring buffer
403 sw $14,24($29) # offload to ring buffer
455 sw $15,28($29) # offload to ring buffer
507 sw $16,32($29) # offload to ring buffer
559 sw $17,36($29) # offload to ring buffe
    [all...]
  /external/chromium_org/net/tools/flip_server/
output_ordering.cc 14 : ring(NULL),
90 pmp->ring = &first_data_senders_;
138 sitpmi->second.ring = &(pmi->second);
179 pmp.ring->erase(pmp.it);
output_ordering.h 29 PriorityRing* ring; member in struct:net::OutputOrdering::PriorityMapPointer
  /external/chromium_org/ui/keyboard/resources/layouts/
latin-accents.js 11 '\u00C5', // Capital A ring
47 '\u00E5', // Lowercase A ring
  /external/chromium_org/ui/webui/resources/css/
tabs.css 95 outline: 5px auto -webkit-focus-ring-color;
  /external/qemu/
kvm-all.c 560 struct kvm_coalesced_mmio_ring *ring; local
562 ring = (void *)run + (s->coalesced_mmio * TARGET_PAGE_SIZE);
563 while (ring->first != ring->last) {
566 ent = &ring->coalesced_mmio[ring->first];
570 ring->first = (ring->first + 1) % KVM_COALESCED_MMIO_MAX;
  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 348 Ringtone ring = RingtoneManager.getRingtone(getActivity(), Uri.parse(uri)); local
349 if (ring != null) {
350 return ring.getTitle(context);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
popup.js 165 function ring() {
175 animationTimer = window.setTimeout(ring, 50);
177 ring();
  /packages/services/Telephony/src/com/android/phone/
Ringer.java 150 void ring() { method in class:Ringer
151 if (DBG) log("ring()...");
174 if (DBG) log("skipping ring because volume is zero");
184 // the ring so that it happens the correct amount of
185 // time after the previous ring
188 // and play time of the first ring
190 log("delaying ring by " + (mFirstRingStartTime - mFirstRingEventTime));
195 // We've gotten two ring events so far, but the ring
CallNotifier.java 250 // repeat the ring when requested by the RIL, and when the user has NOT
258 mRinger.ring();
260 if (DBG) log("RING before NEW_RING, skipping");
437 // - don't ring for call waiting connections
446 // still need to run a caller-id query, and we may not even ring
554 // if this has already been queried then just ring, otherwise
620 // *after* this check but before we call mRinger.ring() below,
652 * If it is not a waiting call (there is no other active call in foreground), we will ring the
658 mRinger.ring();
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 30 ; idesc64 offset, selector, ring

Completed in 2058 milliseconds

1 2