Home
last modified time | relevance | path

Searched defs:q (Results 1 – 25 of 2491) sorted by relevance

12345678910>>...100

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/
DRendezvousChannelTest.kt13 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
40 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
62 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
84 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
112 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
128 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
147 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
168 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
192 val q = Channel<Int>(Channel.RENDEZVOUS) in testIteratorTwoWithYield() constant
218 val q = Channel<Int>(Channel.RENDEZVOUS) in <lambda>() constant
[all …]
DConflatedChannelTest.kt16 val q = createConflatedChannel<Int>() in createConflatedChannel() constant
27 val q = createConflatedChannel<Int>() in <lambda>() constant
35 val q = createConflatedChannel<Int>() in testConflatedClose() constant
49 val q = createConflatedChannel<Int>() in <lambda>() constant
77 val q = createConflatedChannel<Int>() in testConsumeAll() constant
DBufferedChannelTest.kt13 val q = Channel<Int>(1) in <lambda>() constant
43 val q = Channel<Int>(1) in <lambda>() constant
69 val q = Channel<Int>(1) in <lambda>() constant
93 val q = Channel<Int>(1) in <lambda>() constant
124 val q = Channel<Int>(5) in testConsumeAll() constant
/external/grpc-grpc/src/core/lib/gpr/
Dmpscq.cc25 void gpr_mpscq_init(gpr_mpscq* q) { in gpr_mpscq_init()
31 void gpr_mpscq_destroy(gpr_mpscq* q) { in gpr_mpscq_destroy()
36 bool gpr_mpscq_push(gpr_mpscq* q, gpr_mpscq_node* n) { in gpr_mpscq_push()
44 gpr_mpscq_node* gpr_mpscq_pop(gpr_mpscq* q) { in gpr_mpscq_pop()
49 gpr_mpscq_node* gpr_mpscq_pop_and_check_end(gpr_mpscq* q, bool* empty) { in gpr_mpscq_pop_and_check_end()
85 void gpr_locked_mpscq_init(gpr_locked_mpscq* q) { in gpr_locked_mpscq_init()
90 void gpr_locked_mpscq_destroy(gpr_locked_mpscq* q) { in gpr_locked_mpscq_destroy()
95 bool gpr_locked_mpscq_push(gpr_locked_mpscq* q, gpr_mpscq_node* n) { in gpr_locked_mpscq_push()
99 gpr_mpscq_node* gpr_locked_mpscq_try_pop(gpr_locked_mpscq* q) { in gpr_locked_mpscq_try_pop()
108 gpr_mpscq_node* gpr_locked_mpscq_pop(gpr_locked_mpscq* q) { in gpr_locked_mpscq_pop()
/external/clang/test/CodeGen/
Dms-volatile.c17 void test1(struct foo *p, struct foo *q) { in test1()
23 void test2(volatile int *p, volatile int *q) { in test2()
29 void test3(struct foo *p, struct foo *q) { in test3()
35 void test4(volatile struct foo *p, volatile struct foo *q) { in test4()
41 void test5(volatile struct foo *p, volatile struct foo *q) { in test5()
47 void test6(struct bar *p, struct bar *q) { in test6()
53 void test7(volatile struct bar *p, volatile struct bar *q) { in test7()
59 void test8(volatile double *p, volatile double *q) { in test8()
65 void test9(volatile baz *p, baz *q) { in test9()
71 void test10(volatile long long *p, volatile long long *q) { in test10()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DQueuesTest.java84 BlockingQueue<T> q, in drain()
102 private void testMultipleProducers(BlockingQueue<Object> q) throws InterruptedException { in testMultipleProducers()
129 private void testDrainTimesOut(BlockingQueue<Object> q) throws Exception { in testDrainTimesOut()
161 private void testZeroElements(BlockingQueue<Object> q) throws InterruptedException { in testZeroElements()
174 private void testEmpty(BlockingQueue<Object> q) { in testEmpty()
184 private void testNegativeMaxElements(BlockingQueue<Object> q) throws InterruptedException { in testNegativeMaxElements()
203 private void testDrain_throws(BlockingQueue<Object> q) { in testDrain_throws()
219 private void testDrainUninterruptibly_doesNotThrow(final BlockingQueue<Object> q) { in testDrainUninterruptibly_doesNotThrow()
264 private void assertDrained(BlockingQueue<Object> q) { in assertDrained()
270 private void assertInterruptibleDrained(BlockingQueue<Object> q) { in assertInterruptibleDrained()
[all …]
/external/guava/android/guava-tests/test/com/google/common/collect/
DQueuesTest.java84 BlockingQueue<T> q, in drain()
102 private void testMultipleProducers(BlockingQueue<Object> q) throws InterruptedException { in testMultipleProducers()
129 private void testDrainTimesOut(BlockingQueue<Object> q) throws Exception { in testDrainTimesOut()
161 private void testZeroElements(BlockingQueue<Object> q) throws InterruptedException { in testZeroElements()
174 private void testEmpty(BlockingQueue<Object> q) { in testEmpty()
184 private void testNegativeMaxElements(BlockingQueue<Object> q) throws InterruptedException { in testNegativeMaxElements()
203 private void testDrain_throws(BlockingQueue<Object> q) { in testDrain_throws()
219 private void testDrainUninterruptibly_doesNotThrow(final BlockingQueue<Object> q) { in testDrainUninterruptibly_doesNotThrow()
263 private void assertDrained(BlockingQueue<Object> q) { in assertDrained()
269 private void assertInterruptibleDrained(BlockingQueue<Object> q) { in assertInterruptibleDrained()
[all …]
/external/selinux/checkpolicy/
Dqueue.c15 queue_t q; in queue_create() local
26 int queue_insert(queue_t q, queue_element_t e) in queue_insert()
50 int queue_push(queue_t q, queue_element_t e) in queue_push()
74 queue_element_t queue_remove(queue_t q) in queue_remove()
96 queue_element_t queue_head(queue_t q) in queue_head()
107 void queue_destroy(queue_t q) in queue_destroy()
125 int queue_map(queue_t q, int (*f) (queue_element_t, void *), void *vp) in queue_map()
143 void queue_map_remove_on_error(queue_t q, in queue_map_remove_on_error()
/external/rust/crates/crossbeam-queue/tests/
Dseg_queue.rs9 let q = SegQueue::new(); in smoke() localVariable
20 let q = SegQueue::new(); in len_empty_full() localVariable
38 let q = SegQueue::new(); in len() localVariable
62 let q = SegQueue::new(); in spsc() localVariable
93 let q = SegQueue::<usize>::new(); in mpmc() localVariable
148 let q = SegQueue::new(); in drops() localVariable
177 let q = SegQueue::new(); in into_iter() localVariable
188 let q = SegQueue::new(); in into_iter_drop() localVariable
Darray_queue.rs9 let q = ArrayQueue::new(1); in smoke() localVariable
22 let q = ArrayQueue::<i32>::new(i); in capacity() localVariable
35 let q = ArrayQueue::new(2); in len_empty_full() localVariable
72 let q = ArrayQueue::new(CAP); in len() localVariable
131 let q = ArrayQueue::new(3); in spsc() localVariable
163 let q = ArrayQueue::<usize>::new(3); in spsc_ring_buffer() localVariable
204 let q = ArrayQueue::<usize>::new(3); in mpmc() localVariable
244 let q = ArrayQueue::<usize>::new(3); in mpmc_ring_buffer() localVariable
305 let q = ArrayQueue::new(50); in drops() localVariable
342 let q = ArrayQueue::new(THREADS); in linearizable() localVariable
[all …]
/external/ImageMagick/coders/
Dcmyk.c237 *magick_restrict q; in ReadCMYKImage() local
320 *magick_restrict q; in ReadCMYKImage() local
416 *magick_restrict q; in ReadCMYKImage() local
468 *magick_restrict q; in ReadCMYKImage() local
520 *magick_restrict q; in ReadCMYKImage() local
572 *magick_restrict q; in ReadCMYKImage() local
626 *magick_restrict q; in ReadCMYKImage() local
717 *magick_restrict q; in ReadCMYKImage() local
787 *magick_restrict q; in ReadCMYKImage() local
857 *magick_restrict q; in ReadCMYKImage() local
[all …]
Dycbcr.c237 *magick_restrict q; in ReadYCBCRImage() local
318 *magick_restrict q; in ReadYCBCRImage() local
410 *magick_restrict q; in ReadYCBCRImage() local
463 *magick_restrict q; in ReadYCBCRImage() local
516 *magick_restrict q; in ReadYCBCRImage() local
571 *magick_restrict q; in ReadYCBCRImage() local
663 *magick_restrict q; in ReadYCBCRImage() local
734 *magick_restrict q; in ReadYCBCRImage() local
805 *magick_restrict q; in ReadYCBCRImage() local
878 *magick_restrict q; in ReadYCBCRImage() local
Dbgr.c238 *magick_restrict q; in ReadBGRImage() local
318 *magick_restrict q; in ReadBGRImage() local
417 *magick_restrict q; in ReadBGRImage() local
470 *magick_restrict q; in ReadBGRImage() local
523 *magick_restrict q; in ReadBGRImage() local
584 *magick_restrict q; in ReadBGRImage() local
676 *magick_restrict q; in ReadBGRImage() local
747 *magick_restrict q; in ReadBGRImage() local
818 *magick_restrict q; in ReadBGRImage() local
891 *magick_restrict q; in ReadBGRImage() local
Drgb.c238 *magick_restrict q; in ReadRGBImage() local
321 *magick_restrict q; in ReadRGBImage() local
417 *magick_restrict q; in ReadRGBImage() local
469 *magick_restrict q; in ReadRGBImage() local
521 *magick_restrict q; in ReadRGBImage() local
575 *magick_restrict q; in ReadRGBImage() local
666 *magick_restrict q; in ReadRGBImage() local
736 *magick_restrict q; in ReadRGBImage() local
806 *magick_restrict q; in ReadRGBImage() local
878 *magick_restrict q; in ReadRGBImage() local
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_query_sw.c44 fd_sw_destroy_query(struct fd_context *ctx, struct fd_query *q) in fd_sw_destroy_query()
83 is_time_rate_query(struct fd_query *q) in is_time_rate_query()
100 is_draw_rate_query(struct fd_query *q) in is_draw_rate_query()
112 fd_sw_begin_query(struct fd_context *ctx, struct fd_query *q) in fd_sw_begin_query()
124 fd_sw_end_query(struct fd_context *ctx, struct fd_query *q) in fd_sw_end_query()
136 fd_sw_get_query_result(struct fd_context *ctx, struct fd_query *q, in fd_sw_get_query_result()
167 struct fd_query *q; in fd_sw_create_query() local
/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dquaternion.inl97 GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat<T, P>::tquat(tquat<T, P> const & q)
104 GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat<T, P>::tquat(tquat<T, Q> const & q)
128 GLM_FUNC_QUALIFIER GLM_CONSTEXPR tquat<T, P>::tquat(tquat<U, Q> const & q)
158 tquat<T, P> q(T(1) + Dot, LocalW.x, LocalW.y, LocalW.z); local
202 GLM_FUNC_QUALIFIER tquat<T, P> conjugate(tquat<T, P> const & q)
208 GLM_FUNC_QUALIFIER tquat<T, P> inverse(tquat<T, P> const & q)
217 GLM_FUNC_QUALIFIER tquat<T, P> & tquat<T, P>::operator=(tquat<T, P> const & q)
229 GLM_FUNC_QUALIFIER tquat<T, P> & tquat<T, P>::operator=(tquat<U, P> const & q)
240 GLM_FUNC_QUALIFIER tquat<T, P> & tquat<T, P>::operator+=(tquat<U, P> const& q)
247 GLM_FUNC_QUALIFIER tquat<T, P> & tquat<T, P>::operator-=(tquat<U, P> const& q)
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_query_hw.c42 nv50_hw_query_allocate(struct nv50_context *nv50, struct nv50_query *q, in nv50_hw_query_allocate()
77 nv50_hw_query_get(struct nouveau_pushbuf *push, struct nv50_query *q, in nv50_hw_query_get()
94 nv50_hw_query_update(struct nv50_query *q) in nv50_hw_query_update()
108 nv50_hw_destroy_query(struct nv50_context *nv50, struct nv50_query *q) in nv50_hw_destroy_query()
123 nv50_hw_begin_query(struct nv50_context *nv50, struct nv50_query *q) in nv50_hw_begin_query()
198 nv50_hw_end_query(struct nv50_context *nv50, struct nv50_query *q) in nv50_hw_end_query()
268 nv50_hw_get_query_result(struct nv50_context *nv50, struct nv50_query *q, in nv50_hw_get_query_result()
353 struct nv50_query *q; in nv50_hw_create_query() local
435 struct nv50_query *q, unsigned result_offset) in nv50_hw_query_pushbuf_submit()
449 nv84_hw_query_fifo_wait(struct nouveau_pushbuf *push, struct nv50_query *q) in nv84_hw_query_fifo_wait()
/external/AFLplusplus/src/
Dafl-fuzz-queue.c45 double compute_weight(afl_state_t *afl, struct queue_entry *q, in compute_weight()
101 struct queue_entry *q = afl->queue_buf[i]; in create_alias_table() local
121 struct queue_entry *q = afl->queue_buf[i]; in create_alias_table() local
145 struct queue_entry *q = afl->queue_buf[i]; in create_alias_table() local
247 void mark_as_det_done(afl_state_t *afl, struct queue_entry *q) { in mark_as_det_done()
266 void mark_as_variable(afl_state_t *afl, struct queue_entry *q) { in mark_as_variable()
291 void mark_as_redundant(afl_state_t *afl, struct queue_entry *q, u8 state) { in mark_as_redundant()
409 static u8 check_if_text(afl_state_t *afl, struct queue_entry *q) { in check_if_text()
522 struct queue_entry *q = ck_alloc(sizeof(struct queue_entry)); in add_to_queue() local
588 struct queue_entry *q; in destroy_queue() local
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_query_hw.c34 nvc0_hw_query_allocate(struct nvc0_context *nvc0, struct nvc0_query *q, in nvc0_hw_query_allocate()
69 nvc0_hw_query_get(struct nouveau_pushbuf *push, struct nvc0_query *q, in nvc0_hw_query_get()
86 nvc0_hw_query_rotate(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_hw_query_rotate()
97 nvc0_hw_query_update(struct nouveau_client *cli, struct nvc0_query *q) in nvc0_hw_query_update()
111 nvc0_hw_destroy_query(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_hw_destroy_query()
142 nvc0_hw_begin_query(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_hw_begin_query()
227 nvc0_hw_end_query(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_hw_end_query()
308 nvc0_hw_get_query_result(struct nvc0_context *nvc0, struct nvc0_query *q, in nvc0_hw_get_query_result()
389 struct nvc0_query *q, in nvc0_hw_get_query_result_resource()
529 struct nvc0_query *q; in nvc0_hw_create_query() local
[all …]
/external/rust/crates/crossbeam-deque/tests/
Dinjector.rs12 let q = Injector::new(); in smoke() localVariable
28 let q = Injector::new(); in is_empty() localVariable
54 let q = Injector::new(); in spsc() localVariable
87 let q = Injector::new(); in mpmc() localVariable
129 let q = Injector::new(); in stampede() localVariable
139 let q = &q; in stampede() localVariable
173 let q = Injector::new(); in stress() localVariable
181 let q = &q; in stress() localVariable
233 let q = Injector::new(); in no_starvation() localVariable
242 let q = &q; in no_starvation() localVariable
[all …]
/external/antlr/tool/src/test/java/org/antlr/test/
DTestFastQueue.java39 FastQueue<String> q = new FastQueue<String>(); in testQueueNoRemove() local
51 FastQueue<String> q = new FastQueue<String>(); in testQueueThenRemoveAll() local
71 FastQueue<String> q = new FastQueue<String>(); in testQueueThenRemoveOneByOne() local
91 FastQueue<String> q = new FastQueue<String>(); in testGetFromEmptyQueue() local
103 FastQueue<String> q = new FastQueue<String>(); in testGetFromEmptyQueueAfterSomeAdds() local
119 FastQueue<String> q = new FastQueue<String>(); in testGetFromEmptyQueueAfterClear() local
/external/cronet/base/containers/
Dcircular_deque_unittest.cc116 circular_deque<DestructorCounter> q; in TEST() local
126 circular_deque<DestructorCounter> q; in TEST() local
168 circular_deque<int> q = {1, 2, 3, 4, 5, 6}; in TEST() local
176 circular_deque<int> q; in TEST() local
227 circular_deque<int> q = MakeSequence(10); in TEST() local
228 CycleTest(q, [](const circular_deque<int>& q, size_t cycle) { in TEST()
252 circular_deque<int> q = MakeSequence(10); in TEST() local
294 circular_deque<int> q; in TEST() local
337 circular_deque<int> q = MakeSequence(10); in TEST() local
383 circular_deque<int> q = MakeSequence(10); in TEST() local
[all …]
/external/libchrome/base/containers/
Dcircular_deque_unittest.cc115 circular_deque<DestructorCounter> q; in TEST() local
125 circular_deque<DestructorCounter> q; in TEST() local
167 circular_deque<int> q = {1, 2, 3, 4, 5, 6}; in TEST() local
175 circular_deque<int> q; in TEST() local
226 circular_deque<int> q = MakeSequence(10); in TEST() local
227 CycleTest(q, [](const circular_deque<int>& q, size_t cycle) { in TEST()
251 circular_deque<int> q = MakeSequence(10); in TEST() local
293 circular_deque<int> q; in TEST() local
336 circular_deque<int> q = MakeSequence(10); in TEST() local
382 circular_deque<int> q = MakeSequence(10); in TEST() local
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/
Dzbuild.h99 # define ZSWAP16(q) _byteswap_ushort(q) argument
100 # define ZSWAP32(q) _byteswap_ulong(q) argument
101 # define ZSWAP64(q) _byteswap_uint64(q) argument
105 # define ZSWAP16(q) __builtin_bswap16(q) argument
106 # define ZSWAP32(q) __builtin_bswap32(q) argument
107 # define ZSWAP64(q) __builtin_bswap64(q) argument
111 # define ZSWAP16(q) bswap_16(q) argument
112 # define ZSWAP32(q) bswap_32(q) argument
113 # define ZSWAP64(q) bswap_64(q) argument
117 # define ZSWAP16(q) bswap16(q) argument
[all …]
/external/mesa3d/src/gallium/frontends/clover/core/
Dresource.cpp58 resource::copy(command_queue &q, const vector &origin, const vector &region, in copy()
68 resource::clear(command_queue &q, const vector &origin, const vector &region, in clear()
83 resource::add_map(command_queue &q, cl_map_flags flags, bool blocking, in add_map()
102 resource::bind_sampler_view(command_queue &q) { in bind_sampler_view()
110 resource::unbind_sampler_view(command_queue &q, in unbind_sampler_view()
116 resource::create_image_view(command_queue &q) { in create_image_view()
136 resource::bind_surface(command_queue &q, bool rw) { in bind_surface()
149 resource::unbind_surface(command_queue &q, pipe_surface *st) { in unbind_surface()
154 command_queue &q, const void *data_ptr) : in root_resource()
221 mapping::mapping(command_queue &q, resource &r, in mapping()

12345678910>>...100