Home
last modified time | relevance | path

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

12345678910>>...68

/external/selinux/prebuilts/bin/
Dseinfo.py119 q = setools.BoolQuery(p) variable
126 q = setools.CategoryQuery(p) variable
133 q = setools.ObjClassQuery(p) variable
140 q = setools.CommonQuery(p) variable
147 q = setools.ConstraintQuery(p, ruletype=["constrain", "mlsconstrain"]) variable
154 q = setools.DefaultQuery(p) variable
161 q = setools.FSUseQuery(p) variable
168 q = setools.GenfsconQuery(p) variable
175 q = setools.InitialSIDQuery(p) variable
182 q = setools.NetifconQuery(p) variable
[all …]
/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/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.kt13 val q = Channel<Int>(Channel.CONFLATED) in testBasicConflationOfferPoll() constant
24 val q = ConflatedChannel<Int>() in <lambda>() constant
32 val q = Channel<Int>(Channel.CONFLATED) in testConflatedClose() constant
46 val q = Channel<Int>(Channel.CONFLATED) in <lambda>() constant
74 val q = Channel<Int>(Channel.CONFLATED) in testConsumeAll() constant
DArrayChannelTest.kt13 val q = Channel<Int>(1) in <lambda>() constant
42 val q = Channel<Int>(1) in <lambda>() constant
67 val q = Channel<Int>(1) in <lambda>() constant
90 val q = Channel<Int>(1) in <lambda>() constant
120 val q = Channel<Int>(5) in testConsumeAll() constant
/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/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/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/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/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/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/
DSegmentQueueTest.kt16 val q = SegmentBasedQueue<Int>() in simpleTest() constant
32 val q = SegmentBasedQueue<Int>() in testSegmentRemoving() constant
46 val q = SegmentBasedQueue<Int>() in testRemoveHeadSegment() constant
58 val q = SegmentBasedQueue<Int>() in stressTest() constant
81 val q = SegmentBasedQueue<Int>() in stressTestRemoveSegmentsSerial() constant
/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/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/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 …]
Dnvc0_query_sw.c68 nvc0_sw_destroy_query(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_sw_destroy_query()
75 nvc0_sw_begin_query(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_sw_begin_query()
90 nvc0_sw_end_query(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_sw_end_query()
99 nvc0_sw_get_query_result(struct nvc0_context *nvc0, struct nvc0_query *q, in nvc0_sw_get_query_result()
122 struct nvc0_query *q; in nvc0_sw_create_query() local
/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/clang/test/Sema/
Dfloat128-ld-incompatibility.cpp11 __float128 q{ldf()}; // expected-error {{cannot initialize a variable of type '__float128' with an… variable
13 auto test1(__float128 q, long double ld) -> decltype(q + ld) { // expected-error {{invalid operands… in test1()
23 __float128 q; in test3() local
29 …ld * q; // expected-error {{invalid operands to binary expression ('long double' and '__float128')… in test3() local
/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()
Dmemory.cpp85 root_buffer::resource_in(command_queue &q) { in resource_in()
94 root_buffer::resource_undef(command_queue &q) { in resource_undef()
99 root_buffer::resource(command_queue &q, const void *data_ptr) { in resource()
116 root_buffer::resource_out(command_queue &q) { in resource_out()
128 sub_buffer::resource_in(command_queue &q) { in resource_in()
141 sub_buffer::resource_undef(command_queue &q) { in resource_undef()
146 sub_buffer::resource_out(command_queue &q) { in resource_out()
166 image::resource_in(command_queue &q) { in resource_in()
172 image::resource_undef(command_queue &q) { in resource_undef()
177 image::resource(command_queue &q, const void *data_ptr) { in resource()
[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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/spec/
DDHDomainParameterSpec.java16 private final BigInteger q; field in DHDomainParameterSpec
40 public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g) in DHDomainParameterSpec()
53 public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g, int l) in DHDomainParameterSpec()
67 public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g, BigInteger j, int l) in DHDomainParameterSpec()
82 … public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g, BigInteger j, int m, int l) in DHDomainParameterSpec()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/spec/
DDHDomainParameterSpec.java18 private final BigInteger q; field in DHDomainParameterSpec
42 public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g) in DHDomainParameterSpec()
55 public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g, int l) in DHDomainParameterSpec()
69 public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g, BigInteger j, int l) in DHDomainParameterSpec()
84 … public DHDomainParameterSpec(BigInteger p, BigInteger q, BigInteger g, BigInteger j, int m, int l) in DHDomainParameterSpec()

12345678910>>...68