Searched defs:idx (Results 1 - 25 of 77) sorted by relevance

1234

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dhndrte_cons.h32 uint idx; member in struct:__anon26
/hardware/qcom/audio/legacy/libalsa-intf/
H A Damix.c37 unsigned idx = 0; local
45 idx = atoi(p);
48 return mixer_get_control(mixer, name, idx);
H A Dalsa_mixer.c235 ALOGV(" id iface dev sub idx num perms type isvolume name\n");
346 int idx = 2; local
351 ALOGV("0x%08x,", tlv[idx++]);
369 int idx = 2; local
373 ALOGV("0x%08x,", tlv[idx++]);
501 fprintf( stderr, "Value: %d idx:%d\n", atoi(argv[n]), n);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_scan.c299 static int find_in_scan(const int16_t *scan, int l, int idx) { argument
303 if (rc == idx)
H A Dvp9_tile_common.c18 static int get_tile_offset(int idx, int mis, int log2) { argument
20 const int offset = ((idx * sb_cols) >> log2) << MI_BLOCK_SIZE_LOG2;
H A Dvp9_reconinter.c104 static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx) { argument
105 MV res = { round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.row +
106 mi->bmi[1].as_mv[idx].as_mv.row +
107 mi->bmi[2].as_mv[idx].as_mv.row +
108 mi->bmi[3].as_mv[idx].as_mv.row),
109 round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.col +
110 mi->bmi[1].as_mv[idx].as_mv.col +
111 mi->bmi[2].as_mv[idx].as_mv.col +
112 mi->bmi[3].as_mv[idx].as_mv.col) };
428 void vp9_setup_pre_planes(MACROBLOCKD *xd, int idx, argument
[all...]
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
H A DOMXMetadata.cpp82 int idx = 0; local
89 idx = metaData->number_of_faces;
92 faces[idx].left = faceData->tFacePosition[j].nLeft;
93 faces[idx].top = faceData->tFacePosition[j].nTop;
94 faces[idx].bottom = faceData->tFacePosition[j].nWidth;
95 faces[idx].right = faceData->tFacePosition[j].nHeight;
/hardware/broadcom/libbt/src/
H A Dbt_vendor_brcm.c167 int fd, idx; local
171 for (idx=0; idx < CH_MAX; idx++)
172 (*fd_array)[idx] = fd;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Drdopt.h44 static void insertsortsad(int arr[],int idx[], int len) argument
57 tempi = idx[i];
62 idx[k] = idx[k - 1];
66 idx[j] = tempi;
H A Dlookahead.c31 unsigned int *idx)
33 unsigned int index = *idx;
39 *idx = index;
30 pop(struct lookahead_ctx *ctx, unsigned int *idx) argument
/hardware/libhardware/tests/camera2/
H A DCameraModuleTests.cpp91 int idx[] = { -1, mNumberOfCameras, mNumberOfCameras + 1 }; local
94 for (unsigned i = 0; i < sizeof(idx)/sizeof(idx[0]); ++i) {
95 String8 deviceName = String8::format("%d", idx[i]);
123 int idx[] = { -1, mNumberOfCameras, mNumberOfCameras + 1 }; local
124 for (unsigned i = 0; i < sizeof(idx)/sizeof(idx[0]); ++i) {
126 EXPECT_NE(OK, mModule->get_camera_info(idx[i], &info));
127 EXPECT_EQ(-ENODEV, mModule->get_camera_info(idx[i], &info))
128 << "Incorrect error code for get_camera_info idx
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_lookahead.c32 unsigned int *idx) {
33 unsigned int index = *idx;
39 *idx = index;
31 pop(struct lookahead_ctx *ctx, unsigned int *idx) argument
H A Dvp9_quantize.c87 int idx = 0; local
103 idx_arr[idx++] = i;
107 // pre-scan pass. Note: idx can be zero.
108 for (i = 0; i < idx; i++) {
H A Dvp9_encodemv.c251 int idx, idy; local
254 for (idx = 0; idx < 2; idx += num_4x4_w) {
255 const int i = idy * 2 + idx;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
H A Dvp8.h115 int idx; /**< frame index to get (input) */ member in struct:vp9_ref_frame
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Drate_hist.c84 int idx = hist->frames++ % hist->samples; local
85 hist->pts[idx] = now;
86 hist->sz[idx] = (int)pkt->data.frame.sz;
107 idx = (int)(avg_bitrate * (RATE_BINS / 2) / (cfg->rc_target_bitrate * 1000));
108 if (idx < 0)
109 idx = 0;
110 if (idx > RATE_BINS - 1)
111 idx = RATE_BINS - 1;
112 if (hist->bucket[idx].low > avg_bitrate)
113 hist->bucket[idx]
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
H A Donyxd_if.c43 static void ref_cnt_fb (int *buf, int *idx, int new_idx);
199 static void ref_cnt_fb (int *buf, int *idx, int new_idx) argument
201 if (buf[*idx] > 0)
202 buf[*idx]--;
204 *idx = new_idx;
/hardware/intel/img/libdrm/libdrm/radeon/
H A Dradeon_cs_gem.c118 uint32_t idx; local
138 idx = i * RELOC_SIZE;
139 reloc = (struct cs_reloc_gem*)&csg->relocs[idx];
166 radeon_cs_write_dword(cs, idx);
190 idx = (csg->base.crelocs++) * RELOC_SIZE;
191 reloc = (struct cs_reloc_gem*)&csg->relocs[idx];
200 radeon_cs_write_dword(cs, idx);
/hardware/qcom/display/msm8084/libqdutils/
H A Dmdp_version.cpp112 char* tokenStr[], int *idx) {
124 *idx = index;
111 tokenizeParams(char *inputParams, const char *delim, char* tokenStr[], int *idx) argument
/hardware/ti/omap4-aah/camera/
H A DNV12_resize.cpp63 mmUint16 idx,idy, idxC; local
95 idx = i_img_ptr->uWidth;
99 if ( idx < 1 || idy < 1 || i_img_ptr->uStride < 1 ) {
100 CAMHAL_LOGE("idx or idy less then 1 idx = %d idy = %d stride = %d", idx, idy, i_img_ptr->uStride);
104 resizeFactorX = ((idx-1)<<9) / codx;
142 //in = *(inImgPtrY + (y)*idx + (x));
150 //in = *(inImgPtrY + (y)*idx + (x+1));
157 //in = *(inImgPtrY + (y+1)*idx
[all...]
/hardware/ti/omap4xxx/camera/
H A DNV12_resize.c52 mmUint16 idx,idy, idxC; local
92 idx = i_img_ptr->uWidth;
96 if (idx < 1 || idy < 1 || i_img_ptr->uStride < 1)
98 ALOGE("idx or idy less then 1 idx = %d idy = %d stride = %d", idx, idy, i_img_ptr->uStride);
103 resizeFactorX = ((idx-1)<<9) / codx;
144 //in = *(inImgPtrY + (y)*idx + (x));
152 //in = *(inImgPtrY + (y)*idx + (x+1));
159 //in = *(inImgPtrY + (y+1)*idx
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
H A Dobj_int_extract.c300 int parse_elf_section(elf_obj_t *elf, int idx, Elf32_Shdr *hdr32, Elf64_Shdr *hdr64) { argument
302 if (idx >= elf->hdr32.e_shnum)
305 COPY_STRUCT(hdr32, elf->buf, elf->hdr32.e_shoff + idx * elf->hdr32.e_shentsize,
318 if (idx >= elf->hdr64.e_shnum)
321 COPY_STRUCT(hdr64, elf->buf, elf->hdr64.e_shoff + idx * elf->hdr64.e_shentsize,
340 const char *parse_elf_string_table(elf_obj_t *elf, int s_idx, int idx) { argument
346 s_idx, idx);
350 return (char *)(elf->buf + shdr.sh_offset + idx);
356 s_idx, idx);
360 return (char *)(elf->buf + shdr.sh_offset + idx);
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dexternal_frame_buffer_test.cc64 const int idx = FindFreeBufferIndex(); local
65 if (idx == num_buffers_)
68 if (ext_fb_list_[idx].size < min_size) {
69 delete [] ext_fb_list_[idx].data;
70 ext_fb_list_[idx].data = new uint8_t[min_size];
71 ext_fb_list_[idx].size = min_size;
74 SetFrameBuffer(idx, fb);
82 const int idx = FindFreeBufferIndex(); local
83 if (idx == num_buffers_)
86 if (ext_fb_list_[idx]
135 SetFrameBuffer(int idx, vpx_codec_frame_buffer_t *fb) argument
[all...]
/hardware/intel/img/psb_video/src/
H A Dpsb_drv_debug.c438 int idx=0; local
440 while( idx < byte_size / 4 )
442 unsigned int cmd = buffer[idx++];
448 fprintf( pF , "%04X 2NDPASSDEBLOCK\n" , (idx-1)*4 );
452 buffer[idx] );
453 idx++;
461 fprintf( pF , "%04X HEADER\n" , (idx-1)*4 );
465 buffer[idx] );
466 idx++;
475 fprintf( pF , "%04X CMD_REGVALPAIR_WRITE ( %08X )\n", (idx
[all...]
/hardware/qcom/display/msm8226/libqdutils/
H A Dmdp_version.cpp119 char* tokenStr[], int *idx) {
131 *idx = index;
118 tokenizeParams(char *inputParams, const char *delim, char* tokenStr[], int *idx) argument

Completed in 853 milliseconds

1234