Home
last modified time | relevance | path

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

12345678910>>...55

/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/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.java71 private static <T> int drain(BlockingQueue<T> q, Collection<? super T> buffer, int maxElements, in drain()
84 private void testMultipleProducers(BlockingQueue<Object> q) in testMultipleProducers()
107 private void testDrainTimesOut(BlockingQueue<Object> q) throws Exception { in testDrainTimesOut()
136 private void testZeroElements(BlockingQueue<Object> q) throws InterruptedException { in testZeroElements()
149 private void testEmpty(BlockingQueue<Object> q) { in testEmpty()
159 private void testNegativeMaxElements(BlockingQueue<Object> q) throws InterruptedException { in testNegativeMaxElements()
178 private void testDrain_throws(BlockingQueue<Object> q) { in testDrain_throws()
193 private void testDrainUninterruptibly_doesNotThrow(final BlockingQueue<Object> q) { in testDrainUninterruptibly_doesNotThrow()
236 private void assertDrained(BlockingQueue<Object> q) { in assertDrained()
242 private void assertInterruptibleDrained(BlockingQueue<Object> q) { in assertInterruptibleDrained()
[all …]
/external/mesa3d/src/mesa/main/
Dqueryobj.c50 struct gl_query_object *q = MALLOC_STRUCT(gl_query_object); in _mesa_new_query_object() local
67 _mesa_begin_query(struct gl_context *ctx, struct gl_query_object *q) in _mesa_begin_query()
78 _mesa_end_query(struct gl_context *ctx, struct gl_query_object *q) in _mesa_end_query()
89 _mesa_wait_query(struct gl_context *ctx, struct gl_query_object *q) in _mesa_wait_query()
104 _mesa_check_query(struct gl_context *ctx, struct gl_query_object *q) in _mesa_check_query()
117 _mesa_delete_query(struct gl_context *ctx, struct gl_query_object *q) in _mesa_delete_query()
202 struct gl_query_object *q in _mesa_GenQueriesARB() local
240 struct gl_query_object *q = _mesa_lookup_query_object(ctx, ids[i]); in _mesa_DeleteQueriesARB() local
290 struct gl_query_object *q, **bindpt; in _mesa_BeginQueryIndexed() local
354 struct gl_query_object *q, **bindpt; in _mesa_EndQueryIndexed() local
[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/ImageMagick/coders/
Dcmyk.c225 *magick_restrict q; in ReadCMYKImage() local
308 *magick_restrict q; in ReadCMYKImage() local
408 *magick_restrict q; in ReadCMYKImage() local
461 *magick_restrict q; in ReadCMYKImage() local
514 *magick_restrict q; in ReadCMYKImage() local
567 *magick_restrict q; in ReadCMYKImage() local
622 *magick_restrict q; in ReadCMYKImage() local
716 *magick_restrict q; in ReadCMYKImage() local
793 *magick_restrict q; in ReadCMYKImage() local
869 *magick_restrict q; in ReadCMYKImage() local
[all …]
Drgb.c230 *magick_restrict q; in ReadRGBImage() local
312 *magick_restrict q; in ReadRGBImage() local
411 *magick_restrict q; in ReadRGBImage() local
463 *magick_restrict q; in ReadRGBImage() local
515 *magick_restrict q; in ReadRGBImage() local
575 *magick_restrict q; in ReadRGBImage() local
668 *magick_restrict q; in ReadRGBImage() local
744 *magick_restrict q; in ReadRGBImage() local
820 *magick_restrict q; in ReadRGBImage() local
898 *magick_restrict q; in ReadRGBImage() local
Dbgr.c231 *magick_restrict q; in ReadBGRImage() local
312 *magick_restrict q; in ReadBGRImage() local
412 *magick_restrict q; in ReadBGRImage() local
465 *magick_restrict q; in ReadBGRImage() local
518 *magick_restrict q; in ReadBGRImage() local
579 *magick_restrict q; in ReadBGRImage() local
673 *magick_restrict q; in ReadBGRImage() local
750 *magick_restrict q; in ReadBGRImage() local
827 *magick_restrict q; in ReadBGRImage() local
906 *magick_restrict q; in ReadBGRImage() local
/external/antlr/antlr-3.4/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/vulkan-validation-layers/libs/glm/gtc/
Dquaternion.inl55 tquat<U, Q> const & q
119 detail::tquat<T, P> q(T(1) + Dot, w.x, w.y, w.z); local
178 detail::tquat<T, P> const & q
187 detail::tquat<T, P> const & q
201 tquat<T, P> const & q
214 tquat<T, P> const & q
271 detail::tquat<T, P> const & q
280 detail::tquat<T, P> const & q,
290 detail::tquat<T, P> const & q,
301 detail::tquat<T, P> const & q,
[all …]
/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/state_trackers/clover/core/
Dresource.cpp56 resource::copy(command_queue &q, const point &origin, const point &region, in copy()
66 resource::add_map(command_queue &q, cl_map_flags flags, bool blocking, in add_map()
85 resource::bind_sampler_view(clover::command_queue &q) { in bind_sampler_view()
93 resource::unbind_sampler_view(clover::command_queue &q, in unbind_sampler_view()
99 resource::bind_surface(clover::command_queue &q, bool rw) { in bind_surface()
113 resource::unbind_surface(clover::command_queue &q, pipe_surface *st) { in unbind_surface()
118 clover::command_queue &q, in root_resource()
171 mapping::mapping(command_queue &q, resource &r, in mapping()
/external/mesa3d/src/gallium/drivers/nv50/
Dnv50_query.c60 nv50_query_allocate(struct nv50_context *nv50, struct nv50_query *q, int size) in nv50_query_allocate()
102 struct nv50_query *q; in nv50_query_create() local
127 nv50_query_get(struct nouveau_pushbuf *push, struct nv50_query *q, in nv50_query_get()
146 struct nv50_query *q = nv50_query(pq); in nv50_query_begin() local
199 struct nv50_query *q = nv50_query(pq); in nv50_query_end() local
240 nv50_query_ready(struct nv50_query *q) in nv50_query_ready()
250 struct nv50_query *q = nv50_query(pq); in nv50_query_result() local
310 struct nv50_query *q = nv50_query(pq); in nv84_query_fifo_wait() local
328 struct nv50_query *q; in nv50_render_condition() local
355 struct nv50_query *q = nv50_query(pq); in nv50_query_pushbuf_submit() local
/external/mesa3d/src/gallium/drivers/nvc0/
Dnvc0_query.c59 nvc0_query_allocate(struct nvc0_context *nvc0, struct nvc0_query *q, int size) in nvc0_query_allocate()
101 struct nvc0_query *q; in nvc0_query_create() local
157 nvc0_query_get(struct nouveau_pushbuf *push, struct nvc0_query *q, in nvc0_query_get()
172 nvc0_query_rotate(struct nvc0_context *nvc0, struct nvc0_query *q) in nvc0_query_rotate()
185 struct nvc0_query *q = nvc0_query(pq); in nvc0_query_begin() local
257 struct nvc0_query *q = nvc0_query(pq); in nvc0_query_end() local
323 nvc0_query_update(struct nouveau_client *cli, struct nvc0_query *q) in nvc0_query_update()
339 struct nvc0_query *q = nvc0_query(pq); in nvc0_query_result() local
411 struct nvc0_query *q = nvc0_query(pq); in nvc0_query_fifo_wait() local
432 struct nvc0_query *q; in nvc0_render_condition() local
[all …]
/external/valgrind/drd/
Ddrd_rwlock.c87 struct rwlock_thread_info* q; in DRD_() local
99 struct rwlock_thread_info* q; in DRD_() local
118 struct rwlock_thread_info* q; in DRD_() local
128 struct rwlock_thread_info* q; in DRD_() local
146 struct rwlock_thread_info* q; in DRD_() local
171 struct rwlock_thread_info* q; in DRD_() local
242 struct rwlock_thread_info* q; in rwlock_cleanup() local
403 struct rwlock_thread_info* q; in DRD_() local
469 struct rwlock_thread_info* q; in DRD_() local
506 struct rwlock_thread_info* q; in DRD_() local
[all …]
/external/mesa3d/src/gallium/state_trackers/clover/api/
Dqueue.cpp51 clRetainCommandQueue(cl_command_queue q) { in clRetainCommandQueue()
60 clReleaseCommandQueue(cl_command_queue q) { in clReleaseCommandQueue()
71 clGetCommandQueueInfo(cl_command_queue q, cl_command_queue_info param, in clGetCommandQueueInfo()
96 clFlush(cl_command_queue q) { in clFlush()
Dtransfer.cpp38 validate_base(cl_command_queue q, cl_uint num_deps, const cl_event *deps) { in validate_base()
57 validate_obj(cl_command_queue q, cl_mem obj) { in validate_obj()
102 soft_copy_op(cl_command_queue q, in soft_copy_op()
128 hard_copy_op(cl_command_queue q, T dst_obj, const point &dst_orig, in hard_copy_op()
138 clEnqueueReadBuffer(cl_command_queue q, cl_mem obj, cl_bool blocking, in clEnqueueReadBuffer()
163 clEnqueueWriteBuffer(cl_command_queue q, cl_mem obj, cl_bool blocking, in clEnqueueWriteBuffer()
188 clEnqueueReadBufferRect(cl_command_queue q, cl_mem obj, cl_bool blocking, in clEnqueueReadBufferRect()
219 clEnqueueWriteBufferRect(cl_command_queue q, cl_mem obj, cl_bool blocking, in clEnqueueWriteBufferRect()
250 clEnqueueCopyBuffer(cl_command_queue q, cl_mem src_obj, cl_mem dst_obj, in clEnqueueCopyBuffer()
272 clEnqueueCopyBufferRect(cl_command_queue q, cl_mem src_obj, cl_mem dst_obj, in clEnqueueCopyBufferRect()
[all …]
/external/vulkan-validation-layers/libs/glm/gtx/
Ddual_quaternion.inl69 tquat<T, P> const & q,
148 detail::tdualquat<T, P> const & q
157 detail::tdualquat<T, P> const & q,
178 detail::tdualquat<T, P> const & q,
191 detail::tdualquat<T, P> const & q
200 detail::tdualquat<T, P> const & q,
211 detail::tdualquat<T, P> const & q
220 detail::tdualquat<T, P> const & q,
231 detail::tdualquat<T, P> const & q
240 detail::tdualquat<T, P> const & q,
[all …]
Dsimd_quat.inl46 GLM_FUNC_QUALIFIER fquatSIMD::fquatSIMD(fquatSIMD const & q) : function in glm::detail::fquatSIMD
58 GLM_FUNC_QUALIFIER fquatSIMD::fquatSIMD(quat const & q) :
78 GLM_FUNC_QUALIFIER fquatSIMD& fquatSIMD::operator=(fquatSIMD const & q)
99 GLM_FUNC_QUALIFIER fquatSIMD operator- (fquatSIMD const & q)
173 GLM_FUNC_QUALIFIER fvec4SIMD operator* (fquatSIMD const & q, fvec4SIMD const & v)
195 GLM_FUNC_QUALIFIER fvec4SIMD operator* (fvec4SIMD const & v, fquatSIMD const & q)
200 GLM_FUNC_QUALIFIER fquatSIMD operator* (fquatSIMD const & q, float s)
205 GLM_FUNC_QUALIFIER fquatSIMD operator* (float s, fquatSIMD const & q)
212 GLM_FUNC_QUALIFIER fquatSIMD operator/ (fquatSIMD const & q, float s)
326 detail::fquatSIMD const & q
[all …]
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_queryobj.c67 st_DeleteQuery(struct gl_context *ctx, struct gl_query_object *q) in st_DeleteQuery()
82 st_BeginQuery(struct gl_context *ctx, struct gl_query_object *q) in st_BeginQuery()
130 st_EndQuery(struct gl_context *ctx, struct gl_query_object *q) in st_EndQuery()
147 st_WaitQuery(struct gl_context *ctx, struct gl_query_object *q) in st_WaitQuery()
169 st_CheckQuery(struct gl_context *ctx, struct gl_query_object *q) in st_CheckQuery()
/external/ImageMagick/MagickCore/
Dquantum-export.c243 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportAlphaQuantum()
348 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportBGRQuantum()
647 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportBGRAQuantum()
891 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportBGROQuantum()
1135 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportBlackQuantum()
1244 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportBlueQuantum()
1349 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportCbYCrYQuantum()
1464 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportCMYKQuantum()
1609 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportCMYKAQuantum()
1774 unsigned char *magick_restrict q,ExceptionInfo *exception) in ExportCMYKOQuantum()
[all …]
Dcomposite-private.h36 const double q,const double beta) in MagickOver_()
53 const double alpha,const Quantum *q,const double beta,Quantum *composite) in CompositePixelOver()
123 const double alpha,const PixelInfo *q,const double beta,PixelInfo *composite) in CompositePixelInfoOver()
146 const double alpha,const PixelInfo *q,const double beta,PixelInfo *composite) in CompositePixelInfoPlus()
169 const double alpha,const PixelInfo *q,const double beta,const double area, in CompositePixelInfoAreaBlend()
180 const double alpha,const PixelInfo *q,const double beta,PixelInfo *composite) in CompositePixelInfoBlend()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_queryobj.c36 static void radeonQueryGetResult(struct gl_context *ctx, struct gl_query_object *q) in radeonQueryGetResult()
74 static void radeonDeleteQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonDeleteQuery()
87 static void radeonWaitQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonWaitQuery()
104 static void radeonBeginQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonBeginQuery()
147 static void radeonEndQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonEndQuery()
160 static void radeonCheckQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonCheckQuery()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_queryobj.c36 static void radeonQueryGetResult(struct gl_context *ctx, struct gl_query_object *q) in radeonQueryGetResult()
74 static void radeonDeleteQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonDeleteQuery()
87 static void radeonWaitQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonWaitQuery()
104 static void radeonBeginQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonBeginQuery()
147 static void radeonEndQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonEndQuery()
160 static void radeonCheckQuery(struct gl_context *ctx, struct gl_query_object *q) in radeonCheckQuery()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DDHParameters.java15 private BigInteger q; field in DHParameters
42 BigInteger q) in DHParameters()
50 BigInteger q, in DHParameters()
59 BigInteger q, in DHParameters()
69 BigInteger q, in DHParameters()
79 BigInteger q, in DHParameters()

12345678910>>...55