Searched refs:prio (Results 1 - 25 of 45) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/android_stub/
H A Dlog_stub.cpp5 int __android_log_print(int prio, const char* tag, const char* fmt, ...) argument
10 int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap) argument
/xsrc/external/mit/mkfontscale/dist/
H A Dhash.h29 int prio; member in struct:_HashBucket
38 int putHash(HashTablePtr table, char *key, char *value, int prio);
H A Dhash.c90 putHash(HashTablePtr table, char *key, char *value, int prio) argument
98 if (prio > bp->prio) {
126 bp->prio = prio;
/xsrc/external/mit/MesaLib/dist/include/android_stub/android/
H A Dlog.h95 * Writes the constant string `text` to the log, with priority `prio` and tag
98 int __android_log_write(int prio, const char* tag, const char* text);
101 * Writes a formatted string to the log, with priority `prio` and tag `tag`.
105 int __android_log_print(int prio, const char* tag, const char* fmt, ...)
112 int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap)
166 * with priority `prio` and tag `tag`.
170 int __android_log_buf_write(int bufID, int prio, const char* tag, const char* text);
174 * with priority `prio` and tag `tag`.
180 int __android_log_buf_print(int bufID, int prio, const char* tag, const char* fmt, ...)
303 * __android_log_set_minimum_priority() to determine if a log message with a given prio an
[all...]
/xsrc/external/mit/MesaLib/dist/include/android_stub/log/
H A Dlog_main.h82 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
84 #define android_printLog(prio, tag, ...) \
85 __android_log_print(prio, tag, __VA_ARGS__)
87 #define android_vprintLog(prio, cond, tag, ...) \
88 __android_log_vprint(prio, tag, __VA_ARGS__)
359 * result of non-zero to expose a log. prio is ANDROID_LOG_VERBOSE to
363 int __android_log_is_loggable(int prio, const char* tag, int default_prio);
364 int __android_log_is_loggable_len(int prio, const char* tag, size_t len, int default_prio);
367 #define android_testLog(prio, ta
[all...]
/xsrc/external/mit/libdrm/dist/freedreno/
H A Dfreedreno_pipe.c37 fd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio) argument
47 if ((prio != 1) && (fd_device_version(dev) < FD_VERSION_SUBMIT_QUEUES)) {
52 pipe = dev->funcs->pipe_new(dev, id, prio);
H A Dfreedreno_drmif.h106 struct fd_pipe * fd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio);
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/drm/
H A Dfreedreno_pipe.c35 fd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio) argument
45 if ((prio != 1) && (fd_device_version(dev) < FD_VERSION_SUBMIT_QUEUES)) {
50 pipe = dev->funcs->pipe_new(dev, id, prio);
H A Dmsm_pipe.c128 static int open_submitqueue(struct fd_pipe *pipe, uint32_t prio) argument
132 .prio = prio,
144 req.prio = MIN2(req.prio, MAX2(nr_rings, 1) - 1);
201 enum fd_pipe_id id, uint32_t prio)
244 if (open_submitqueue(pipe, prio))
200 msm_pipe_new(struct fd_device * dev,enum fd_pipe_id id,uint32_t prio) argument
H A Dfreedreno_drmif.h104 struct fd_pipe * fd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio);
H A Dmsm_drm.h287 __u32 prio; /* in, Priority level */ member in struct:drm_msm_submitqueue
H A Dmsm_priv.h58 enum fd_pipe_id id, uint32_t prio);
/xsrc/external/mit/libdrm/dist/freedreno/msm/
H A Dmsm_pipe.c99 static int open_submitqueue(struct fd_pipe *pipe, uint32_t prio) argument
103 .prio = prio,
115 req.prio = MIN2(req.prio, MAX2(nr_rings, 1) - 1);
169 enum fd_pipe_id id, uint32_t prio)
204 if (open_submitqueue(pipe, prio))
168 msm_pipe_new(struct fd_device * dev,enum fd_pipe_id id,uint32_t prio) argument
H A Dmsm_priv.h79 enum fd_pipe_id id, uint32_t prio);
/xsrc/external/mit/MesaLib/dist/src/freedreno/drm/
H A Dmsm_pipe.c131 open_submitqueue(struct fd_pipe *pipe, uint32_t prio) argument
135 .prio = prio,
147 req.prio = MIN2(req.prio, MAX2(nr_rings, 1) - 1);
213 msm_pipe_new(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio) argument
256 if (open_submitqueue(pipe, prio))
H A Dfreedreno_pipe.c35 fd_pipe_new2(struct fd_device *dev, enum fd_pipe_id id, uint32_t prio) argument
45 if ((prio != 1) && (fd_device_version(dev) < FD_VERSION_SUBMIT_QUEUES)) {
50 pipe = dev->funcs->pipe_new(dev, id, prio);
H A Dmsm_priv.h82 uint32_t prio);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/
H A Dir2.c55 /* priority of vector instruction for scheduling (lower=higher prio) */
74 /* priority of scalar instruction for scheduling (lower=higher prio) */
288 unsigned prio_v = ~0u, prio_s = ~0u, prio; local in function:sched_next
290 prio = alu_vector_prio(instr);
291 if (prio < prio_v) {
293 prio_v = prio;
302 prio = alu_scalar_prio(instr);
303 if (prio >= prio_v && !compat)
306 if (prio < prio_s) {
308 prio_s = prio;
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_resource.c397 enum modifier_priority prio = MODIFIER_PRIORITY_INVALID; local in function:select_best_modifier
405 prio = MAX2(prio, MODIFIER_PRIORITY_SUPER_TILED);
410 prio = MAX2(prio, MODIFIER_PRIORITY_TILED);
415 prio = MAX2(prio, MODIFIER_PRIORITY_SPLIT_SUPER_TILED);
420 prio = MAX2(prio, MODIFIER_PRIORITY_SPLIT_TILED);
423 prio
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/
H A Dir2.c57 /* priority of vector instruction for scheduling (lower=higher prio) */
77 /* priority of scalar instruction for scheduling (lower=higher prio) */
315 unsigned prio_v = ~0u, prio_s = ~0u, prio; local in function:sched_next
317 prio = alu_vector_prio(instr);
318 if (prio < prio_v) {
320 prio_v = prio;
329 prio = alu_scalar_prio(instr);
330 if (prio >= prio_v && !compat)
333 if (prio < prio_s) {
335 prio_s = prio;
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_context.c335 unsigned prio = 1; local in function:fd_context_init
340 prio = 0;
342 prio = 0;
344 prio = 2;
347 ctx->pipe = fd_pipe_new2(screen->dev, FD_PIPE_3D, prio);
/xsrc/external/mit/libdrm/dist/freedreno/kgsl/
H A Dkgsl_priv.h106 enum fd_pipe_id id, uint32_t prio);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_resource.c390 enum modifier_priority prio = MODIFIER_PRIORITY_INVALID; local in function:select_best_modifier
398 prio = MAX2(prio, MODIFIER_PRIORITY_SUPER_TILED);
403 prio = MAX2(prio, MODIFIER_PRIORITY_TILED);
408 prio = MAX2(prio, MODIFIER_PRIORITY_SPLIT_SUPER_TILED);
413 prio = MAX2(prio, MODIFIER_PRIORITY_SPLIT_TILED);
416 prio
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_context.c590 unsigned prio = 1; local in function:fd_context_init
594 prio = 0;
596 prio = 0;
598 prio = 2;
607 ctx->pipe = fd_pipe_new2(screen->dev, FD_PIPE_3D, prio);
/xsrc/external/mit/libdrm/dist/include/drm/
H A Dmsm_drm.h272 __u32 prio; /* in, Priority level */ member in struct:drm_msm_submitqueue

Completed in 15 milliseconds

12