Home
last modified time | relevance | path

Searched refs:d (Results 1 – 25 of 370) sorted by relevance

12345678910>>...15

/hardware/intel/common/libva/test/common/
Dva_display_wayland.c56 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/
Dmd5_utils.c160 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 …]
/hardware/intel/common/libva/test/putsurface/
Dputsurface_wayland.c140 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/qcom/bt/msm8909/libbt-vendor/include/
Dhw_ar3k.h36 #define htobs(d) (d) argument
37 #define htobl(d) (d) argument
38 #define btohs(d) (d) argument
39 #define btohl(d) (d) argument
41 #define htobs(d) bswap_16(d) argument
42 #define htobl(d) bswap_32(d) argument
43 #define btohs(d) bswap_16(d) argument
44 #define btohl(d) bswap_32(d) argument
/hardware/qcom/bt/msm8992/libbt-vendor/include/
Dhw_ar3k.h36 #define htobs(d) (d) argument
37 #define htobl(d) (d) argument
38 #define btohs(d) (d) argument
39 #define btohl(d) (d) argument
41 #define htobs(d) bswap_16(d) argument
42 #define htobl(d) bswap_32(d) argument
43 #define btohs(d) bswap_16(d) argument
44 #define btohl(d) bswap_32(d) argument
/hardware/qcom/bt/msm8996/libbt-vendor/include/
Dhw_ar3k.h36 #define htobs(d) (d) argument
37 #define htobl(d) (d) argument
38 #define btohs(d) (d) argument
39 #define btohl(d) (d) argument
41 #define htobs(d) bswap_16(d) argument
42 #define htobl(d) bswap_32(d) argument
43 #define btohs(d) bswap_16(d) argument
44 #define btohl(d) bswap_32(d) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
Darmlink_adapter.sh40 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/
Dgen_scalers.c41 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/bsp/intel/peripheral/libmraa/src/i2c/
Di2c.c224 i2c_smbus_data_t d; in mraa_i2c_read_byte() local
225 if (mraa_i2c_smbus_access(dev->fh, I2C_SMBUS_READ, I2C_NOCMD, I2C_SMBUS_BYTE, &d) < 0) { in mraa_i2c_read_byte()
229 return 0x0FF & d.byte; in mraa_i2c_read_byte()
237 i2c_smbus_data_t d; in mraa_i2c_read_byte_data() local
238 if (mraa_i2c_smbus_access(dev->fh, I2C_SMBUS_READ, command, I2C_SMBUS_BYTE_DATA, &d) < 0) { in mraa_i2c_read_byte_data()
242 return 0x0FF & d.byte; in mraa_i2c_read_byte_data()
250 i2c_smbus_data_t d; in mraa_i2c_read_word_data() local
251 if (mraa_i2c_smbus_access(dev->fh, I2C_SMBUS_READ, command, I2C_SMBUS_WORD_DATA, &d) < 0) { in mraa_i2c_read_word_data()
255 return 0xFFFF & d.word; in mraa_i2c_read_word_data()
263 struct i2c_rdwr_ioctl_data d; in mraa_i2c_read_bytes_data() local
[all …]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
Dethernet.h159 #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/
Ddequantize_arm.c25 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/msm8084/liboverlay/pipes/
Doverlay3DPipe.h57 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/msm8960/liboverlay/pipes/
Doverlay3DPipe.h57 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/
Dquantize_sse2.c36 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 …]
/hardware/qcom/display/msm8994/liboverlay/
DoverlayMdp.h59 void setCrop(const utils::Dim& d);
112 void setSrcRectDim(const utils::Dim d);
113 void setDstRectDim(const utils::Dim d);
242 inline void MdpCtrl::setSrcRectDim(const overlay::utils::Dim d) { in setSrcRectDim() argument
243 mOVInfo.src_rect.x = d.x; in setSrcRectDim()
244 mOVInfo.src_rect.y = d.y; in setSrcRectDim()
245 mOVInfo.src_rect.w = d.w; in setSrcRectDim()
246 mOVInfo.src_rect.h = d.h; in setSrcRectDim()
256 inline void MdpCtrl::setDstRectDim(const overlay::utils::Dim d) { in setDstRectDim() argument
257 mOVInfo.dst_rect.x = d.x; in setDstRectDim()
[all …]
/hardware/qcom/display/msm8226/liboverlay/
DoverlayMdp.h59 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/qcom/display/msm8909/liboverlay/
DoverlayMdp.h59 void setCrop(const utils::Dim& d);
112 void setSrcRectDim(const utils::Dim d);
113 void setDstRectDim(const utils::Dim d);
242 inline void MdpCtrl::setSrcRectDim(const overlay::utils::Dim d) { in setSrcRectDim() argument
243 mOVInfo.src_rect.x = d.x; in setSrcRectDim()
244 mOVInfo.src_rect.y = d.y; in setSrcRectDim()
245 mOVInfo.src_rect.w = d.w; in setSrcRectDim()
246 mOVInfo.src_rect.h = d.h; in setSrcRectDim()
256 inline void MdpCtrl::setDstRectDim(const overlay::utils::Dim d) { in setDstRectDim() argument
257 mOVInfo.dst_rect.x = d.x; in setDstRectDim()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Dreconinter.c126 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/
DoverlayMdp.h59 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/msm8909/loc_api/libloc_api_50001/
Dloc.cpp283 EXIT_LOG(%d, retVal); in loc_init()
331 EXIT_LOG(%d, retVal); in loc_init()
386 EXIT_LOG(%d, ret_val); in loc_start()
412 EXIT_LOG(%d, ret_val); in loc_stop()
457 EXIT_LOG(%d, ret_val); in loc_set_position_mode()
485 EXIT_LOG(%d, ret_val); in loc_inject_time()
513 EXIT_LOG(%d, ret_val); in loc_inject_location()
576 EXIT_LOG(%d, geofence_interface == NULL); in get_geofence_interface()
695 EXIT_LOG(%d, ret_val); in loc_agps_open()
739 EXIT_LOG(%d, ret_val); in loc_agps_open_with_apniptype()
[all …]
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
Dloc.cpp283 EXIT_LOG(%d, retVal); in loc_init()
331 EXIT_LOG(%d, retVal); in loc_init()
386 EXIT_LOG(%d, ret_val); in loc_start()
412 EXIT_LOG(%d, ret_val); in loc_stop()
457 EXIT_LOG(%d, ret_val); in loc_set_position_mode()
485 EXIT_LOG(%d, ret_val); in loc_inject_time()
513 EXIT_LOG(%d, ret_val); in loc_inject_location()
576 EXIT_LOG(%d, geofence_interface == NULL); in get_geofence_interface()
695 EXIT_LOG(%d, ret_val); in loc_agps_open()
739 EXIT_LOG(%d, ret_val); in loc_agps_open_with_apniptype()
[all …]
/hardware/qcom/gps/loc_api/libloc_api_50001/
Dloc.cpp283 EXIT_LOG(%d, retVal); in loc_init()
330 EXIT_LOG(%d, retVal); in loc_init()
385 EXIT_LOG(%d, ret_val); in loc_start()
411 EXIT_LOG(%d, ret_val); in loc_stop()
456 EXIT_LOG(%d, ret_val); in loc_set_position_mode()
484 EXIT_LOG(%d, ret_val); in loc_inject_time()
512 EXIT_LOG(%d, ret_val); in loc_inject_location()
575 EXIT_LOG(%d, geofence_interface == NULL); in get_geofence_interface()
694 EXIT_LOG(%d, ret_val); in loc_agps_open()
738 EXIT_LOG(%d, ret_val); in loc_agps_open_with_apniptype()
[all …]
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
Dloc.cpp283 EXIT_LOG(%d, retVal); in loc_init()
330 EXIT_LOG(%d, retVal); in loc_init()
385 EXIT_LOG(%d, ret_val); in loc_start()
411 EXIT_LOG(%d, ret_val); in loc_stop()
456 EXIT_LOG(%d, ret_val); in loc_set_position_mode()
484 EXIT_LOG(%d, ret_val); in loc_inject_time()
512 EXIT_LOG(%d, ret_val); in loc_inject_location()
575 EXIT_LOG(%d, geofence_interface == NULL); in get_geofence_interface()
694 EXIT_LOG(%d, ret_val); in loc_agps_open()
738 EXIT_LOG(%d, ret_val); in loc_agps_open_with_apniptype()
[all …]
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
Dloc.cpp240 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/qcom/display/msm8960/liboverlay/
DoverlayMdp.h59 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 …]

12345678910>>...15