/device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/inc/ |
D | mm_jpeg.h | 153 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/ |
D | qemu-props.c | 84 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/ |
D | mm_jpeg.c | 132 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/ |
D | gps_qemu.c | 74 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/ |
D | mm_jpeg.c | 151 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/ |
D | init.bullhead.diag.rc.userdebug | 10 service cnss_diag /system/bin/cnss_diag --q
|
/device/generic/goldfish/opengl/system/egl/ |
D | eglDisplay.cpp | 290 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/ |
D | keyboard_layout_volantis_japanese.kcm | 106 label: 'q' 107 base: 'q'
|
D | keyboard_layout_volantis_english_us.kcm | 104 label: 'q' 105 base: 'q'
|
D | keyboard_layout_volantis_italian.kcm | 108 label: 'q' 109 base: 'q'
|
D | keyboard_layout_volantis_english_uk.kcm | 106 label: 'q' 107 base: 'q'
|
D | keyboard_layout_volantis_spanish.kcm | 113 label: 'q' 114 base: 'q'
|
D | keyboard_layout_volantis_belgian.kcm | 206 label: 'q' 207 base: 'q'
|
D | keyboard_layout_volantis_french.kcm | 204 label: 'q' 205 base: 'q'
|
D | keyboard_layout_volantis_french_ca.kcm | 117 label: 'q' 118 base: 'q'
|
D | keyboard_layout_volantis_german.kcm | 117 label: 'q' 118 base: 'q'
|
D | keyboard_layout_volantis_swedish.kcm | 115 label: 'q' 116 base: 'q'
|
D | keyboard_layout_volantis_english_us_intl.kcm | 119 label: 'q' 120 base: 'q'
|
D | keyboard_layout_volantis_cangjie.kcm | 107 capslock, ralt: 'q'
|
D | keyboard_layout_volantis_korean.kcm | 107 ralt: 'q'
|
D | keyboard_layout_volantis_zhuyin.kcm | 118 capslock, ralt: 'q'
|
/device/generic/goldfish/qemud/ |
D | qemud.c | 1681 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/ |
D | gles.cpp | 176 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/ |
D | layout | 161 q {
|
/device/generic/goldfish/opengl/system/GLESv1_enc/ |
D | gl_entry.cpp | 33 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()
|