Home
last modified time | relevance | path

Searched refs:q (Results 1 – 25 of 26) sorted by relevance

12

/device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/inc/
Dmm_jpeg.h153 static inline void cirq_reset(mm_jpeg_cirq_t *q) in cirq_reset() argument
155 q->front = 0; in cirq_reset()
156 q->rear = 0; in cirq_reset()
157 q->count = 0; in cirq_reset()
158 pthread_mutex_init(&q->lock, NULL); in cirq_reset()
173 #define cirq_empty(q) (q->count == 0) argument
187 #define cirq_full(q) (q->count == MM_JPEG_CIRQ_SIZE) argument
202 #define cirq_enqueue(q, type, data) ({ \ argument
204 pthread_mutex_lock(&q->lock); \
205 if (cirq_full(q)) { \
[all …]
/device/generic/goldfish/qemu-props/
Dqemu-props.c84 char* q; in main() local
97 q = strchr(temp, '='); in main()
98 if (q == NULL) { in main()
102 *q++ = '\0'; in main()
104 if (property_set(temp, q) < 0) { in main()
105 DD("could not set property '%s' to '%s'", temp, q); in main()
/device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
Dmm_jpeg.c132 static inline void cirq_reset(mm_jpeg_cirq_t *q) in cirq_reset() argument
134 q->front = 0; in cirq_reset()
135 q->rear = 0; in cirq_reset()
136 q->count = 0; in cirq_reset()
137 pthread_mutex_init(&q->lock, NULL); in cirq_reset()
152 #define cirq_empty(q) (q->count == 0) argument
166 #define cirq_full(q) (q->count == MM_JPEG_CIRQ_SIZE) argument
181 #define cirq_enqueue(q, type, data) ({ \ argument
183 pthread_mutex_lock(&q->lock); \
184 if (cirq_full(q)) { \
[all …]
/device/generic/goldfish/gps/
Dgps_qemu.c74 char* q; in nmea_tokenizer_init() local
93 const char* q = p; in nmea_tokenizer_init() local
95 q = memchr(p, ',', end-p); in nmea_tokenizer_init()
96 if (q == NULL) in nmea_tokenizer_init()
97 q = end; in nmea_tokenizer_init()
99 if (q > p) { in nmea_tokenizer_init()
102 t->tokens[count].end = q; in nmea_tokenizer_init()
106 if (q < end) in nmea_tokenizer_init()
107 q += 1; in nmea_tokenizer_init()
109 p = q; in nmea_tokenizer_init()
/device/lge/hammerhead/camera/QCamera2/stack/mm-jpeg-interface/src/
Dmm_jpeg.c151 static inline void cirq_reset(mm_jpeg_cirq_t *q) in cirq_reset() argument
153 q->front = 0; in cirq_reset()
154 q->rear = 0; in cirq_reset()
155 q->count = 0; in cirq_reset()
156 pthread_mutex_init(&q->lock, NULL); in cirq_reset()
171 #define cirq_empty(q) (q->count == 0) argument
185 #define cirq_full(q) (q->count == MM_JPEG_CIRQ_SIZE) argument
200 #define cirq_enqueue(q, type, data) ({ \ argument
202 pthread_mutex_lock(&q->lock); \
203 if (cirq_full(q)) { \
[all …]
/device/lge/bullhead/
Dinit.bullhead.diag.rc.userdebug10 service cnss_diag /system/bin/cnss_diag --q
/device/generic/goldfish/opengl/system/egl/
DeglDisplay.cpp290 const char* q = strchr(p, ' '); in findExtInList() local
291 if (q == NULL) { in findExtInList()
295 if (tokenlen == (q - p) && !memcmp(token, p, tokenlen)) { in findExtInList()
298 p = q+1; in findExtInList()
/device/htc/flounder/VolantisKeyboard/res/raw/
Dkeyboard_layout_volantis_japanese.kcm106 label: 'q'
107 base: 'q'
Dkeyboard_layout_volantis_english_us.kcm104 label: 'q'
105 base: 'q'
Dkeyboard_layout_volantis_italian.kcm108 label: 'q'
109 base: 'q'
Dkeyboard_layout_volantis_english_uk.kcm106 label: 'q'
107 base: 'q'
Dkeyboard_layout_volantis_spanish.kcm113 label: 'q'
114 base: 'q'
Dkeyboard_layout_volantis_belgian.kcm206 label: 'q'
207 base: 'q'
Dkeyboard_layout_volantis_french.kcm204 label: 'q'
205 base: 'q'
Dkeyboard_layout_volantis_french_ca.kcm117 label: 'q'
118 base: 'q'
Dkeyboard_layout_volantis_german.kcm117 label: 'q'
118 base: 'q'
Dkeyboard_layout_volantis_swedish.kcm115 label: 'q'
116 base: 'q'
Dkeyboard_layout_volantis_english_us_intl.kcm119 label: 'q'
120 base: 'q'
Dkeyboard_layout_volantis_cangjie.kcm107 capslock, ralt: 'q'
Dkeyboard_layout_volantis_korean.kcm107 ralt: 'q'
Dkeyboard_layout_volantis_zhuyin.kcm118 capslock, ralt: 'q'
/device/generic/goldfish/qemud/
Dqemud.c1681 char* q; in main() local
1707 q = p; in main()
1708 while ( *q && *q != ' ' && *q != '\t' ) in main()
1709 q += 1; in main()
1711 snprintf( buff, sizeof(buff), "/dev/%.*s", q-p, p ); in main()
/device/generic/goldfish/opengl/tests/gles_android_wrapper/
Dgles.cpp176 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) in glMultiTexCoord4f() argument
178 getDispatch()->glMultiTexCoord4f(target, s, t, r, q); in glMultiTexCoord4f()
601 void glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) in glMultiTexCoord4x() argument
603 getDispatch()->glMultiTexCoord4x(target, s, t, r, q); in glMultiTexCoord4x()
966 void glMultiTexCoord4xOES(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) in glMultiTexCoord4xOES() argument
968 getDispatch()->glMultiTexCoord4xOES(target, s, t, r, q); in glMultiTexCoord4xOES()
/device/sample/skins/WVGAMedDpi/
Dlayout161 q {
/device/generic/goldfish/opengl/system/GLESv1_enc/
Dgl_entry.cpp33 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
117 void glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
210 void glMultiTexCoord4xOES(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q);
453 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) in glMultiTexCoord4f() argument
456 ctx->glMultiTexCoord4f(ctx, target, s, t, r, q); in glMultiTexCoord4f()
961 void glMultiTexCoord4x(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) in glMultiTexCoord4x() argument
964 ctx->glMultiTexCoord4x(ctx, target, s, t, r, q); in glMultiTexCoord4x()
1519 void glMultiTexCoord4xOES(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q) in glMultiTexCoord4xOES() argument
1522 ctx->glMultiTexCoord4xOES(ctx, target, s, t, r, q); in glMultiTexCoord4xOES()

12