/system/bt/stack/ |
D | Android.mk | 39 ./a2dp/a2d_api.c \ 40 ./a2dp/a2d_sbc.c \ 41 ./avrc/avrc_api.c \ 42 ./avrc/avrc_sdp.c \ 43 ./avrc/avrc_opt.c \ 44 ./avrc/avrc_bld_tg.c \ 45 ./avrc/avrc_bld_ct.c \ 46 ./avrc/avrc_pars_tg.c \ 47 ./avrc/avrc_pars_ct.c \ 48 ./avrc/avrc_utils.c \ [all …]
|
D | BUILD.gn | 19 "a2dp/a2d_api.c", 20 "a2dp/a2d_sbc.c", 21 "avrc/avrc_api.c", 22 "avrc/avrc_sdp.c", 23 "avrc/avrc_opt.c", 24 "avrc/avrc_bld_tg.c", 25 "avrc/avrc_bld_ct.c", 26 "avrc/avrc_pars_tg.c", 27 "avrc/avrc_pars_ct.c", 28 "avrc/avrc_utils.c", [all …]
|
/system/bt/bta/ |
D | Android.mk | 8 ./dm/bta_dm_ci.c \ 9 ./dm/bta_dm_act.c \ 10 ./dm/bta_dm_pm.c \ 11 ./dm/bta_dm_main.c \ 12 ./dm/bta_dm_cfg.c \ 13 ./dm/bta_dm_api.c \ 14 ./dm/bta_dm_sco.c \ 15 ./gatt/bta_gattc_api.c \ 16 ./gatt/bta_gatts_act.c \ 17 ./gatt/bta_gatts_main.c \ [all …]
|
D | BUILD.gn | 19 "ag/bta_ag_act.c", 20 "ag/bta_ag_api.c", 21 "ag/bta_ag_at.c", 22 "ag/bta_ag_cfg.c", 23 "ag/bta_ag_ci.c", 24 "ag/bta_ag_cmd.c", 25 "ag/bta_ag_main.c", 26 "ag/bta_ag_rfc.c", 27 "ag/bta_ag_sco.c", 28 "ag/bta_ag_sdp.c", [all …]
|
/system/core/libpixelflinger/ |
D | pixelflinger.cpp | 57 static void ggl_init_procs(context_t* c); 58 static void ggl_set_scissor(context_t* c); 60 static void ggl_enable_blending(context_t* c, int enable); 61 static void ggl_enable_scissor_test(context_t* c, int enable); 62 static void ggl_enable_alpha_test(context_t* c, int enable); 63 static void ggl_enable_logic_op(context_t* c, int enable); 64 static void ggl_enable_dither(context_t* c, int enable); 65 static void ggl_enable_stencil_test(context_t* c, int enable); 66 static void ggl_enable_depth_test(context_t* c, int enable); 67 static void ggl_enable_aa(context_t* c, int enable); [all …]
|
D | scanline.cpp | 95 static void step_y__generic(context_t* c); 97 static void step_y__smooth(context_t* c); 98 static void step_y__tmu(context_t* c); 99 static void step_y__w(context_t* c); 101 static void scanline(context_t* c); 102 static void scanline_perspective(context_t* c); 103 static void scanline_perspective_single(context_t* c); 104 static void scanline_t32cb16blend(context_t* c); 105 static void scanline_t32cb16blend_dither(context_t* c); 106 static void scanline_t32cb16blend_srca(context_t* c); [all …]
|
D | clear.cpp | 27 static void ggl_clear(void* c, GGLbitfield mask); 28 static void ggl_clearColorx(void* c, 30 static void ggl_clearDepthx(void* c, GGLclampx depth); 31 static void ggl_clearStencil(void* c, GGLint s); 35 void ggl_init_clear(context_t* c) in ggl_init_clear() argument 37 GGLContext& procs = *(GGLContext*)c; in ggl_init_clear() 42 c->state.clear.dirty = GGL_STENCIL_BUFFER_BIT | in ggl_init_clear() 45 c->state.clear.depth = FIXED_ONE; in ggl_init_clear() 50 static void memset2d(context_t* c, const surface_t& s, uint32_t packed, in memset2d() argument 53 const uint32_t size = c->formats[s.format].size; in memset2d() [all …]
|
D | raster.cpp | 32 void ggl_init_raster(context_t* c) in ggl_init_raster() argument 34 GGLContext& procs = *(GGLContext*)c; in ggl_init_raster() 42 GGL_CONTEXT(c, con); in ggl_rasterPos2x() 44 c->state.raster.x = x; in ggl_rasterPos2x() 45 c->state.raster.y = y; in ggl_rasterPos2x() 56 GGL_CONTEXT(c, con); in ggl_copyPixels() 59 surface_t* cb = &(c->state.buffers.color); in ggl_copyPixels() 72 GGLint xd = gglFixedToIntRound(c->state.raster.x); in ggl_copyPixels() 73 GGLint yd = gglFixedToIntRound(c->state.raster.y); in ggl_copyPixels() 76 if (xd < GGLint(c->state.scissor.left)) { in ggl_copyPixels() [all …]
|
D | trap.cpp | 37 static void pointx_validate(void *con, const GGLcoord* c, GGLcoord r); 38 static void pointx(void *con, const GGLcoord* c, GGLcoord r); 39 static void aa_pointx(void *con, const GGLcoord* c, GGLcoord r); 40 static void aa_nice_pointx(void *con, const GGLcoord* c, GGLcoord r); 46 static void recti_validate(void* c, GGLint l, GGLint t, GGLint r, GGLint b); 47 static void recti(void* c, GGLint l, GGLint t, GGLint r, GGLint b); 65 static inline int min(int a, int b, int c) CONST; 66 static inline int max(int a, int b, int c) CONST; 80 inline int min(int a, int b, int c) { in min() argument 81 return min(a,min(b,c)); in min() [all …]
|
D | picker.cpp | 33 void ggl_pick(context_t* c) in ggl_pick() argument 35 if (ggl_likely(!c->dirty)) in ggl_pick() 39 const uint32_t enables = c->state.enables; in ggl_pick() 40 needs_t new_needs(c->state.needs); in ggl_pick() 42 if (c->dirty & GGL_CB_STATE) { in ggl_pick() 44 new_needs.n |= GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT); in ggl_pick() 46 c->dirty |= GGL_PIXEL_PIPELINE_STATE; in ggl_pick() 49 if (c->dirty & GGL_PIXEL_PIPELINE_STATE) { in ggl_pick() 50 uint32_t n = GGL_BUILD_NEEDS(c->state.buffers.color.format, CB_FORMAT); in ggl_pick() 53 uint32_t src = c->state.blend.src; in ggl_pick() [all …]
|
/system/bt/stack/smp/ |
D | p_256_multprecision.c | 30 void multiprecision_init(DWORD *c, uint32_t keyLength) in multiprecision_init() argument 33 c[i] = 0; in multiprecision_init() 36 void multiprecision_copy(DWORD *c, DWORD *a, uint32_t keyLength) in multiprecision_copy() argument 39 c[i] = a[i]; in multiprecision_copy() 94 DWORD multiprecision_add(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength) in multiprecision_add() argument 106 c[i]=temp; in multiprecision_add() 113 DWORD multiprecision_sub(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength) in multiprecision_sub() argument 123 c[i] = temp - b[i]; in multiprecision_sub() 124 borrow |= (c[i] > temp); in multiprecision_sub() 131 void multiprecision_lshift_mod(DWORD * c, DWORD * a, uint32_t keyLength) in multiprecision_lshift_mod() argument [all …]
|
/system/extras/ext4_utils/ |
D | sha1.c | 60 u_char c[64]; member 71 void do_R01(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 72 void do_R2(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 73 void do_R3(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 74 void do_R4(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *); 83 do_R01(u_int32_t *a, u_int32_t *b, u_int32_t *c, u_int32_t *d, u_int32_t *e, CHAR64LONG16 *block) in do_R01() argument 85 nR0(a,b,c,d,e, 0); nR0(e,a,b,c,d, 1); nR0(d,e,a,b,c, 2); nR0(c,d,e,a,b, 3); in do_R01() 86 nR0(b,c,d,e,a, 4); nR0(a,b,c,d,e, 5); nR0(e,a,b,c,d, 6); nR0(d,e,a,b,c, 7); in do_R01() 87 nR0(c,d,e,a,b, 8); nR0(b,c,d,e,a, 9); nR0(a,b,c,d,e,10); nR0(e,a,b,c,d,11); in do_R01() 88 nR0(d,e,a,b,c,12); nR0(c,d,e,a,b,13); nR0(b,c,d,e,a,14); nR0(a,b,c,d,e,15); in do_R01() [all …]
|
/system/bt/btif/ |
D | BUILD.gn | 19 "src/btif_av.c", 23 "src/btif_config.c", 24 "src/btif_core.c", 25 "src/btif_debug.c", 26 "src/btif_debug_btsnoop.c", 27 "src/btif_debug_conn.c", 28 "src/btif_dm.c", 29 "src/btif_gatt.c", 30 "src/btif_gatt_client.c", 31 "src/btif_gatt_multi_adv_util.c", [all …]
|
D | Android.mk | 26 src/bluetooth.c 30 src/btif_av.c \ 32 src/btif_config.c \ 34 src/btif_core.c \ 35 src/btif_debug.c \ 36 src/btif_debug_btsnoop.c \ 37 src/btif_debug_conn.c \ 38 src/btif_dm.c \ 39 src/btif_gatt.c \ 40 src/btif_gatt_client.c \ [all …]
|
/system/core/libcutils/ |
D | Android.mk | 20 atomic.c.arm \ 21 config_utils.c \ 22 fs_config.c \ 23 canned_fs_config.c \ 24 hashmap.c \ 25 iosched_policy.c \ 26 load_file.c \ 27 native_handle.c \ 28 open_memstream.c \ 29 process_name.c \ [all …]
|
/system/extras/ksmutils/ |
D | lookup3.c | 115 #define mix(a,b,c) \ argument 117 a -= c; a ^= rot(c, 4); c += b; \ 118 b -= a; b ^= rot(a, 6); a += c; \ 119 c -= b; c ^= rot(b, 8); b += a; \ 120 a -= c; a ^= rot(c,16); c += b; \ 121 b -= a; b ^= rot(a,19); a += c; \ 122 c -= b; c ^= rot(b, 4); b += a; \ 150 #define final(a,b,c) \ argument 152 c ^= b; c -= rot(b,14); \ 153 a ^= c; a -= rot(c,11); \ [all …]
|
/system/core/libpixelflinger/include/pixelflinger/ |
D | pixelflinger.h | 209 void (*recti)(void* c, GGLint l, GGLint t, GGLint r, GGLint b); 210 void (*trianglex)(void* c, 214 void (*scissor)(void* c, GGLint x, GGLint y, GGLsizei width, GGLsizei height); 217 void (*activeTexture)(void* c, GGLuint tmu); 218 void (*bindTexture)(void* c, const GGLSurface* surface); 219 void (*colorBuffer)(void* c, const GGLSurface* surface); 220 void (*readBuffer)(void* c, const GGLSurface* surface); 221 void (*depthBuffer)(void* c, const GGLSurface* surface); 222 void (*bindTextureLod)(void* c, GGLuint tmu, const GGLSurface* surface); 225 void (*enable)(void* c, GGLenum name); [all …]
|
/system/core/liblog/ |
D | Android.mk | 28 liblog_sources := log_event_list.c log_event_write.c logger_write.c 29 liblog_sources += config_write.c logger_name.c logger_lock.c 30 liblog_host_sources := $(liblog_sources) fake_log_device.c event.logtags 31 liblog_host_sources += fake_writer.c 32 liblog_target_sources := $(liblog_sources) event_tag_map.c 33 liblog_target_sources += config_read.c log_time.cpp log_is_loggable.c logprint.c 34 liblog_target_sources += pmsg_reader.c pmsg_writer.c 35 liblog_target_sources += logd_reader.c logd_writer.c logger_read.c 44 LOCAL_SRC_FILES_darwin := event_tag_map.c 45 LOCAL_SRC_FILES_linux := event_tag_map.c [all …]
|
/system/media/audio_utils/ |
D | Android.mk | 9 channels.c \ 11 fifo.c \ 13 format.c \ 14 limiter.c \ 15 minifloat.c \ 16 primitives.c \ 17 resampler.c \ 18 roundup.c \ 19 echo_reference.c 38 channels.c \ [all …]
|
/system/core/libmincrypt/ |
D | Android.mk | 7 LOCAL_SRC_FILES := dsa_sig.c p256.c p256_ec.c p256_ecdsa.c rsa.c sha.c sha256.c 13 LOCAL_SRC_FILES := dsa_sig.c p256.c p256_ec.c p256_ecdsa.c rsa.c sha.c sha256.c
|
/system/bt/osi/ |
D | BUILD.gn | 19 "src/alarm.c", 20 "src/allocation_tracker.c", 21 "src/allocator.c", 22 "src/array.c", 23 "src/buffer.c", 24 "src/compat.c", 25 "src/config.c", 26 "src/data_dispatcher.c", 27 "src/eager_reader.c", 28 "src/fixed_queue.c", [all …]
|
/system/bt/embdrv/sbc/ |
D | BUILD.gn | 19 "decoder/srce/alloc.c", 20 "decoder/srce/bitalloc.c", 21 "decoder/srce/bitalloc-sbc.c", 22 "decoder/srce/bitstream-decode.c", 23 "decoder/srce/decoder-oina.c", 24 "decoder/srce/decoder-private.c", 25 "decoder/srce/decoder-sbc.c", 26 "decoder/srce/dequant.c", 27 "decoder/srce/framing.c", 28 "decoder/srce/framing-sbc.c", [all …]
|
/system/bt/embdrv/sbc/decoder/ |
D | Android.mk | 9 ./srce/alloc.c \ 10 ./srce/bitalloc.c \ 11 ./srce/bitalloc-sbc.c \ 12 ./srce/bitstream-decode.c \ 13 ./srce/decoder-oina.c \ 14 ./srce/decoder-private.c \ 15 ./srce/decoder-sbc.c \ 16 ./srce/dequant.c \ 17 ./srce/framing.c \ 18 ./srce/framing-sbc.c \ [all …]
|
/system/core/toolbox/ |
D | log.c | 45 static android_LogPriority filterCharToPri (char c) in filterCharToPri() argument 49 c = tolower(c); in filterCharToPri() 51 if (c >= '0' && c <= '9') { in filterCharToPri() 52 if (c >= ('0'+ANDROID_LOG_SILENT)) { in filterCharToPri() 55 pri = (android_LogPriority)(c - '0'); in filterCharToPri() 57 } else if (c == 'v') { in filterCharToPri() 59 } else if (c == 'd') { in filterCharToPri() 61 } else if (c == 'i') { in filterCharToPri() 63 } else if (c == 'w') { in filterCharToPri() 65 } else if (c == 'e') { in filterCharToPri() [all …]
|
/system/core/libsysutils/src/ |
D | SocketListener.cpp | 112 char c = CtrlPipe_Shutdown; in stopListener() local 115 rc = TEMP_FAILURE_RETRY(write(mCtrlPipe[1], &c, 1)); in stopListener() 194 char c = CtrlPipe_Shutdown; in runListener() local 195 TEMP_FAILURE_RETRY(read(mCtrlPipe[0], &c, 1)); in runListener() 196 if (c == CtrlPipe_Shutdown) { in runListener() 205 int c; in runListener() local 209 c = accept(mSock, addrp, &alen); in runListener() 210 SLOGV("%s got %d from accept", mSocketName, c); in runListener() 211 } while (c < 0 && errno == EINTR); in runListener() 212 if (c < 0) { in runListener() [all …]
|