/hardware/intel/common/libva/test/common/ |
D | va_display_wayland.c | 56 struct display * const d = data; in registry_handle_global() local 59 d->compositor = in registry_handle_global() 62 d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1); in registry_handle_global() 73 struct display *d; in va_open_display_wayland() local 76 d = g_display; in va_open_display_wayland() 77 d->ref_count++; in va_open_display_wayland() 80 d = calloc(1, sizeof(*d)); in va_open_display_wayland() 81 if (!d) in va_open_display_wayland() 83 d->event_fd = -1; in va_open_display_wayland() 85 d->display = wl_display_connect(NULL); in va_open_display_wayland() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | md5_utils.c | 160 register UWORD32 a, b, c, d; in MD5Transform() local 165 d = buf[3]; in MD5Transform() 167 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform() 168 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform() 169 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform() 170 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform() 171 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform() 172 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform() 173 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform() 174 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform() [all …]
|
D | args.h | 41 #define ARG_DEF(s,l,v,d) {s,l,v,d, NULL} argument 42 #define ARG_DEF_ENUM(s,l,v,d,e) {s,l,v,d,e} argument
|
/hardware/intel/common/libva/test/putsurface/ |
D | putsurface_wayland.c | 140 struct display *d; in va_put_surface() local 148 d = wl_display_get_user_data(wl_drawable->display); in va_put_surface() 149 if (!d) in va_put_surface() 154 wl_display_flush(d->display); in va_put_surface() 169 wl_display_flush(d->display); in va_put_surface() 186 struct display * const d = data; in registry_handle_global() local 189 d->compositor = in registry_handle_global() 192 d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1); in registry_handle_global() 203 struct display *d; in open_display() local 205 d = calloc(1, sizeof *d); in open_display() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/ |
D | armlink_adapter.sh | 40 for d in $libpaths; do 41 [ -f "$d/$f" ] && infiles="$infiles $d/$f" && found=1 && break 42 [ -f "$d/lib${f}.so" ] && infiles="$infiles $d/lib${f}.so" && found=1 && break 43 [ -f "$d/lib${f}.a" ] && infiles="$infiles $d/lib${f}.a" && found=1 && break 47 for d in $libpaths; do 49 libsearchpath="${libsearchpath}$d"
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/ |
D | gen_scalers.c | 41 unsigned int a, b, c, d, e; in vp8_horizontal_line_5_4_scale_c() local 51 d = src[3]; in vp8_horizontal_line_5_4_scale_c() 56 des[2] = (unsigned char)((c * 128 + d * 128 + 128) >> 8); in vp8_horizontal_line_5_4_scale_c() 57 des[3] = (unsigned char)((d * 64 + e * 192 + 128) >> 8); in vp8_horizontal_line_5_4_scale_c() 73 unsigned int a, b, c, d, e; in vp8_vertical_band_5_4_scale_c() local 82 d = src[3 * src_pitch]; in vp8_vertical_band_5_4_scale_c() 87 des[2 * dest_pitch] = (unsigned char)((c * 128 + d * 128 + 128) >> 8); in vp8_vertical_band_5_4_scale_c() 88 des[3 * dest_pitch] = (unsigned char)((d * 64 + e * 192 + 128) >> 8); in vp8_vertical_band_5_4_scale_c() 122 unsigned int a, b, c, d, e; in vp8_horizontal_line_5_3_scale_c() local 132 d = src[3]; in vp8_horizontal_line_5_3_scale_c() [all …]
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
D | ethernet.h | 159 #define eacopy(s, d) \ argument 161 ((uint16 *)(d))[0] = ((const uint16 *)(s))[0]; \ 162 ((uint16 *)(d))[1] = ((const uint16 *)(s))[1]; \ 163 ((uint16 *)(d))[2] = ((const uint16 *)(s))[2]; \ 166 #define ether_copy(s, d) eacopy(s, d) argument 169 #define ether_rcopy(s, d) \ argument 171 ((uint16 *)(d))[2] = ((uint16 *)(s))[2]; \ 172 ((uint16 *)(d))[1] = ((uint16 *)(s))[1]; \ 173 ((uint16 *)(d))[0] = ((uint16 *)(s))[0]; \ 200 #define ETHER_MOVE_HDR(d, s) \ argument [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/ |
D | dequantize_arm.c | 25 void vp8_dequantize_b_neon(BLOCKD *d, short *DQC) in vp8_dequantize_b_neon() argument 27 short *DQ = d->dqcoeff; in vp8_dequantize_b_neon() 28 short *Q = d->qcoeff; in vp8_dequantize_b_neon() 35 void vp8_dequantize_b_v6(BLOCKD *d, short *DQC) in vp8_dequantize_b_v6() argument 37 short *DQ = d->dqcoeff; in vp8_dequantize_b_v6() 38 short *Q = d->qcoeff; in vp8_dequantize_b_v6()
|
/hardware/qcom/display/msm8960/liboverlay/pipes/ |
D | overlay3DPipe.h | 57 bool setCrop(const utils::Dim& d); 87 bool setCrop(const utils::Dim& d); 117 bool setCrop(const utils::Dim& d); 147 bool setCrop(const utils::Dim& d); 191 inline bool M3DExtPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() argument 193 if(!utils::getCropS3D<CHAN>(d, _dim, mM3Dfmt)){ in setCrop() 195 _dim = d; in setCrop() 201 inline bool M3DExtPipe<CHAN>::setPosition(const utils::Dim& d) { in setPosition() argument 212 _dim = d; in setPosition() 260 inline bool M3DPrimaryPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() argument [all …]
|
/hardware/qcom/display/msm8974/liboverlay/pipes/ |
D | overlay3DPipe.h | 57 bool setCrop(const utils::Dim& d); 87 bool setCrop(const utils::Dim& d); 117 bool setCrop(const utils::Dim& d); 147 bool setCrop(const utils::Dim& d); 191 inline bool M3DExtPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() argument 193 if(!utils::getCropS3D<CHAN>(d, _dim, mM3Dfmt)){ in setCrop() 195 _dim = d; in setCrop() 201 inline bool M3DExtPipe<CHAN>::setPosition(const utils::Dim& d) { in setPosition() argument 212 _dim = d; in setPosition() 260 inline bool M3DPrimaryPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() argument [all …]
|
/hardware/qcom/display/msm8084/liboverlay/pipes/ |
D | overlay3DPipe.h | 57 bool setCrop(const utils::Dim& d); 87 bool setCrop(const utils::Dim& d); 117 bool setCrop(const utils::Dim& d); 147 bool setCrop(const utils::Dim& d); 191 inline bool M3DExtPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() argument 193 if(!utils::getCropS3D<CHAN>(d, _dim, mM3Dfmt)){ in setCrop() 195 _dim = d; in setCrop() 201 inline bool M3DExtPipe<CHAN>::setPosition(const utils::Dim& d) { in setPosition() argument 212 _dim = d; in setPosition() 260 inline bool M3DPrimaryPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() argument [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/ |
D | quantize_sse2.c | 36 void vp8_regular_quantize_b_sse2(BLOCK *b, BLOCKD *d) in vp8_regular_quantize_b_sse2() argument 40 short *qcoeff_ptr = d->qcoeff; in vp8_regular_quantize_b_sse2() 56 __m128i dequant0 = _mm_load_si128((__m128i *)(d->dequant)); in vp8_regular_quantize_b_sse2() 57 __m128i dequant1 = _mm_load_si128((__m128i *)(d->dequant + 8)); in vp8_regular_quantize_b_sse2() 133 y0 = _mm_load_si128((__m128i *)(d->qcoeff)); in vp8_regular_quantize_b_sse2() 134 y1 = _mm_load_si128((__m128i *)(d->qcoeff + 8)); in vp8_regular_quantize_b_sse2() 140 _mm_store_si128((__m128i *)(d->dqcoeff), y0); in vp8_regular_quantize_b_sse2() 141 _mm_store_si128((__m128i *)(d->dqcoeff + 8), y1); in vp8_regular_quantize_b_sse2() 143 *d->eob = eob; in vp8_regular_quantize_b_sse2() 146 void vp8_fast_quantize_b_sse2(BLOCK *b, BLOCKD *d) in vp8_fast_quantize_b_sse2() argument [all …]
|
D | vp8_enc_stubs_mmx.c | 28 void vp8_fast_quantize_b_mmx(BLOCK *b, BLOCKD *d) in vp8_fast_quantize_b_mmx() argument 35 short *qcoeff_ptr = d->qcoeff; in vp8_fast_quantize_b_mmx() 36 short *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_mmx() 37 short *dequant_ptr = d->dequant; in vp8_fast_quantize_b_mmx() 39 *d->eob = (char)vp8_fast_quantize_b_impl_mmx( in vp8_fast_quantize_b_mmx()
|
/hardware/qcom/display/msm8226/liboverlay/ |
D | overlayMdp.h | 59 void setCrop(const utils::Dim& d); 114 void setSrcRectDim(const utils::Dim d); 115 void setDstRectDim(const utils::Dim d); 248 inline void MdpCtrl::setSrcRectDim(const overlay::utils::Dim d) { in setSrcRectDim() argument 249 mOVInfo.src_rect.x = d.x; in setSrcRectDim() 250 mOVInfo.src_rect.y = d.y; in setSrcRectDim() 251 mOVInfo.src_rect.w = d.w; in setSrcRectDim() 252 mOVInfo.src_rect.h = d.h; in setSrcRectDim() 262 inline void MdpCtrl::setDstRectDim(const overlay::utils::Dim d) { in setDstRectDim() argument 263 mOVInfo.dst_rect.x = d.x; in setDstRectDim() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
D | reconinter.c | 126 void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, unsigned char *base_pre, int pre_stride, vp… in vp8_build_inter_predictors_b() argument 129 unsigned char *pred_ptr = d->predictor; in vp8_build_inter_predictors_b() 131 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b() 133 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_b() 135 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch); in vp8_build_inter_predictors_b() 151 static void build_inter_predictors4b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride,… in build_inter_predictors4b() argument 154 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors4b() 156 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in build_inter_predictors4b() 158 …x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst… in build_inter_predictors4b() 166 static void build_inter_predictors2b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride,… in build_inter_predictors2b() argument [all …]
|
/hardware/qcom/display/msm8084/liboverlay/ |
D | overlayMdp.h | 59 void setCrop(const utils::Dim& d); 114 void setSrcRectDim(const utils::Dim d); 115 void setDstRectDim(const utils::Dim d); 278 inline void MdpCtrl::setSrcRectDim(const overlay::utils::Dim d) { in setSrcRectDim() argument 279 mOVInfo.src_rect.x = d.x; in setSrcRectDim() 280 mOVInfo.src_rect.y = d.y; in setSrcRectDim() 281 mOVInfo.src_rect.w = d.w; in setSrcRectDim() 282 mOVInfo.src_rect.h = d.h; in setSrcRectDim() 292 inline void MdpCtrl::setDstRectDim(const overlay::utils::Dim d) { in setDstRectDim() argument 293 mOVInfo.dst_rect.x = d.x; in setDstRectDim() [all …]
|
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/ |
D | loc.cpp | 240 EXIT_LOG(%d, retVal); in loc_init() 273 EXIT_LOG(%d, retVal); in loc_init() 332 EXIT_LOG(%d, ret_val); in loc_start() 358 EXIT_LOG(%d, ret_val); in loc_stop() 403 EXIT_LOG(%d, ret_val); in loc_set_position_mode() 431 EXIT_LOG(%d, ret_val); in loc_inject_time() 480 EXIT_LOG(%d, ret_val); in loc_inject_location() 543 EXIT_LOG(%d, geofence_interface == NULL); in get_geofence_interface() 662 EXIT_LOG(%d, ret_val); in loc_agps_open() 689 EXIT_LOG(%d, ret_val); in loc_agps_closed() [all …]
|
/hardware/intel/img/libdrm/ |
D | depcomp | 304 tmpdepfile1=$dir$base.d 305 tmpdepfile2=$dir.libs/$base.d 308 tmpdepfile1=$dir$base.d 309 tmpdepfile2=$dir$base.d 357 tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 358 tmpdepfile2=$dir$base.o.d # libtool 1.5 359 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 360 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 363 tmpdepfile1=$dir$base.o.d 364 tmpdepfile2=$dir$base.d [all …]
|
/hardware/qcom/gps/loc_api/libloc_api_50001/ |
D | loc.cpp | 286 EXIT_LOG(%d, retVal); in loc_init() 369 EXIT_LOG(%d, retVal); in loc_init() 456 EXIT_LOG(%d, ret_val); in loc_start() 482 EXIT_LOG(%d, ret_val); in loc_stop() 527 EXIT_LOG(%d, ret_val); in loc_set_position_mode() 555 EXIT_LOG(%d, ret_val); in loc_inject_time() 611 EXIT_LOG(%d, ret_val); in loc_inject_location() 674 EXIT_LOG(%d, geofence_interface == NULL); in get_geofence_interface() 797 EXIT_LOG(%d, ret_val); in loc_agps_open() 841 EXIT_LOG(%d, ret_val); in loc_agps_open_with_apniptype() [all …]
|
/hardware/qcom/display/msm8960/liboverlay/ |
D | overlayMdp.h | 59 void setCrop(const utils::Dim& d); 111 void setSrcRectDim(const utils::Dim d); 112 void setDstRectDim(const utils::Dim d); 316 inline void MdpCtrl::setSrcRectDim(const overlay::utils::Dim d) { in setSrcRectDim() argument 317 mOVInfo.src_rect.x = d.x; in setSrcRectDim() 318 mOVInfo.src_rect.y = d.y; in setSrcRectDim() 319 mOVInfo.src_rect.w = d.w; in setSrcRectDim() 320 mOVInfo.src_rect.h = d.h; in setSrcRectDim() 330 inline void MdpCtrl::setDstRectDim(const overlay::utils::Dim d) { in setDstRectDim() argument 331 mOVInfo.dst_rect.x = d.x; in setDstRectDim() [all …]
|
/hardware/qcom/display/msm8974/liboverlay/ |
D | overlayMdp.h | 59 void setCrop(const utils::Dim& d); 112 void setSrcRectDim(const utils::Dim d); 113 void setDstRectDim(const utils::Dim d); 317 inline void MdpCtrl::setSrcRectDim(const overlay::utils::Dim d) { in setSrcRectDim() argument 318 mOVInfo.src_rect.x = d.x; in setSrcRectDim() 319 mOVInfo.src_rect.y = d.y; in setSrcRectDim() 320 mOVInfo.src_rect.w = d.w; in setSrcRectDim() 321 mOVInfo.src_rect.h = d.h; in setSrcRectDim() 331 inline void MdpCtrl::setDstRectDim(const overlay::utils::Dim d) { in setDstRectDim() argument 332 mOVInfo.dst_rect.x = d.x; in setDstRectDim() [all …]
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | mcomp.h | 49 BLOCKD *d, 61 (MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *bestmv, int_mv *ref_mv, 74 BLOCKD *d, 87 BLOCKD *d, 100 BLOCKD *d,
|
D | quantize.c | 22 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d) in vp8_fast_quantize_b_c() argument 32 short *qcoeff_ptr = d->qcoeff; in vp8_fast_quantize_b_c() 33 short *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_c() 34 short *dequant_ptr = d->dequant; in vp8_fast_quantize_b_c() 65 *d->eob = (char)(eob + 1); in vp8_fast_quantize_b_c() 70 void vp8_fast_quantize_b_c(BLOCK *b, BLOCKD *d) in vp8_fast_quantize_b_c() argument 77 short *qcoeff_ptr = d->qcoeff; in vp8_fast_quantize_b_c() 78 short *dqcoeff_ptr = d->dqcoeff; in vp8_fast_quantize_b_c() 79 short *dequant_ptr = d->dequant; in vp8_fast_quantize_b_c() 100 *d->eob = (char)(eob + 1); in vp8_fast_quantize_b_c() [all …]
|
D | bitstream.h | 37 # define pack_tokens_into_partitions(a,b,c,d) \ argument 38 vp8cx_pack_tokens_into_partitions_armv5(a,b,c,d,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree) 46 # define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b,c,d)
|
/hardware/invensense/60xx/mlsdk/mllite/ |
D | mlMathFunc.c | 312 float d[10][10], sum = 0; in inv_matrix_det() local 319 inv_matrix_det_inc(p, &d[0][0], n, i, j); in inv_matrix_det() 321 sum + *(p + 10 * i + j) * SIGNM(i + j) * inv_matrix_det(&d[0][0], in inv_matrix_det() 330 double d[10][10], sum = 0; in inv_matrix_detd() local 337 inv_matrix_det_incd(p, &d[0][0], n, i, j); in inv_matrix_detd() 339 sum + *(p + 10 * i + j) * SIGNM(i + j) * inv_matrix_detd(&d[0][0], in inv_matrix_detd() 368 float d; in inv_angle_diff() local 371 d = ang1 - ang2; in inv_angle_diff() 372 if (d > M_PI) in inv_angle_diff() 373 d -= 2 * (float)M_PI; in inv_angle_diff() [all …]
|