Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 146) sorted by relevance

123456

/hardware/invensense/6515/libsensors_iio/software/simple_apps/common/
Dmlerrorcode.h24 #define CALL_N_CHECK(f) { \ argument
25 unsigned int r35uLt = f; \
28 __FILE__, __LINE__, #f, MLErrorCode(r35uLt), r35uLt); \
32 #define CALL_CHECK_N_RETURN_ERROR(f) { \ argument
33 unsigned int r35uLt = f; \
36 __FILE__, __LINE__, #f, MLErrorCode(r35uLt), r35uLt); \
42 #define CALL_CHECK_N_RETURN(f) do { \ argument
43 unsigned int r35uLt = f; \
46 __FILE__, __LINE__, #f, MLErrorCode(r35uLt), r35uLt); \
51 #define CALL_CHECK_N_EXIT(f) { \ argument
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
Darmlink_adapter.sh38 for f in $libs; 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
45 [ $found -eq 0 ] && infiles="$infiles $f"
Dgen_msvs_vcxproj.sh144 local f
152 f=${file_list[i]}
157 objf=$(echo ${f%.*}.obj | sed -e 's/^[\./]\+//g' -e 's,/,_,g')
165 Include=".\\$f"
180 Include=".\\$f"
184 if [[ $f =~ avx.?\.c$ ]]; then
190 Include=".\\$f"
193 Include="$f"
194 depguid=`grep ProjectGuid "$f" | sed 's,.*<.*>\(.*\)</.*>.*,\1,'`
200 Include=".\\$f"
[all …]
Drtcd.pl41 if (!-f $defs_file) {
108 foreach my $f (@ARGV) {
109 open FILE, "<", $f or die "cannot open $f: $!\n";
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dwebm_video_source.h24 FILE *f = reinterpret_cast<FILE *>(userdata); in nestegg_read_cb() local
26 if (fread(buffer, 1, length, f) < length) { in nestegg_read_cb()
27 if (ferror(f)) in nestegg_read_cb()
29 if (feof(f)) in nestegg_read_cb()
38 FILE *f = reinterpret_cast<FILE *>(userdata); in nestegg_seek_cb() local
50 return fseek(f, (long)offset, whence) ? -1 : 0; in nestegg_seek_cb()
56 FILE *f = reinterpret_cast<FILE *>(userdata); in nestegg_tell_cb() local
57 return ftell(f); in nestegg_tell_cb()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
Dresize_util.c47 int f, frames; in main() local
101 f = 0; in main()
102 while (f < frames) { in main()
111 f++; in main()
113 printf("%d frames processed\n", f); in main()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
Dftfy.sh32 for f; do
33 case "$f" in
35 "${dirname_self}"/vpx-astyle.sh "$f"
123 for f in $(git diff HEAD^ --name-only -M90 --diff-filter=AM); do
124 case "$f" in
128 vpx_style "$f"
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dtokenize.c432 FILE *const f = fopen("context.c", "w"); in print_context_counters() local
434 fprintf(f, "#include \"entropy.h\"\n"); in print_context_counters()
436 fprintf(f, "\n/* *** GENERATED FILE: DO NOT EDIT *** */\n\n"); in print_context_counters()
438 …fprintf(f, "int Contexts[BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS];\n\n"… in print_context_counters()
440 …fprintf(f, "const int default_contexts[BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY… in print_context_counters()
448 fprintf(f, "%s\n { /* block Type %d */", Comma(type), type); in print_context_counters()
454 fprintf(f, "%s\n { /* Coeff Band %d */", Comma(band), band); in print_context_counters()
460 fprintf(f, "%s\n {", Comma(pt)); in print_context_counters()
470 fprintf(f, "%s %d", Comma(t), y); in print_context_counters()
475 fprintf(f, "}"); in print_context_counters()
[all …]
Dtemporal_filter.c241 YV12_BUFFER_CONFIG *f = cpi->frames[alt_ref_index]; in vp8_temporal_filter_iterate_c() local
332 (f->y_buffer + mb_y_offset, in vp8_temporal_filter_iterate_c()
333 f->y_stride, in vp8_temporal_filter_iterate_c()
342 (f->u_buffer + mb_uv_offset, in vp8_temporal_filter_iterate_c()
343 f->uv_stride, in vp8_temporal_filter_iterate_c()
352 (f->v_buffer + mb_uv_offset, in vp8_temporal_filter_iterate_c()
353 f->uv_stride, in vp8_temporal_filter_iterate_c()
417 mb_y_offset += 16*(f->y_stride-mb_cols); in vp8_temporal_filter_iterate_c()
418 mb_uv_offset += 8*(f->uv_stride-mb_cols); in vp8_temporal_filter_iterate_c()
Dencodemv.c75 FILE *f = fopen("maxmv.stt", "a"); in vp8_encode_motion_vector()
77 fprintf(f, "New Mv Row Max %6d\n", (mv->row >> 1)); in vp8_encode_motion_vector()
80 fprintf(f, "MV Row conversion error %6d\n", abs(mv->row) / 2); in vp8_encode_motion_vector()
82 fclose(f); in vp8_encode_motion_vector()
87 FILE *f = fopen("maxmv.stt", "a"); in vp8_encode_motion_vector()
88 fprintf(f, "New Mv Col Max %6d\n", (mv->col >> 1)); in vp8_encode_motion_vector()
90 fclose(f); in vp8_encode_motion_vector()
Dbitstream.c795 FILE* f = fopen("enc_tree_probs.txt", "a");
796 fprintf(f, "{\n");
799 fprintf(f, " {\n");
802 fprintf(f, " {\n");
805 fprintf(f, " {");
808 fprintf(f, "%3u, ",
811 fprintf(f, " }\n");
813 fprintf(f, " }\n");
815 fprintf(f, " }\n");
817 fprintf(f, "}\n");
[all …]
/hardware/qcom/display/msm8226/liboverlay/
DoverlayUtils.h167 Whf(uint32_t wi, uint32_t he, uint32_t f) : in Whf()
168 w(wi), h(he), format(f), size(0) {} in Whf()
169 Whf(uint32_t wi, uint32_t he, uint32_t f, uint32_t s) : in Whf()
170 w(wi), h(he), format(f), size(s) {} in Whf()
330 PipeArgs(eMdpFlags f, Whf _whf,
333 mdpFlags(f), in mdpFlags()
357 inline void setMdpFlags(eMdpFlags& f, eMdpFlags v) { in setMdpFlags() argument
358 f = static_cast<eMdpFlags>(setBit(f, v)); in setMdpFlags()
361 inline void clearMdpFlags(eMdpFlags& f, eMdpFlags v) { in clearMdpFlags() argument
362 f = static_cast<eMdpFlags>(clrBit(f, v)); in clearMdpFlags()
[all …]
/hardware/qcom/display/msm8994/liboverlay/
DoverlayUtils.h167 Whf(uint32_t wi, uint32_t he, uint32_t f) : in Whf()
168 w(wi), h(he), format(f), size(0) {} in Whf()
169 Whf(uint32_t wi, uint32_t he, uint32_t f, uint32_t s) : in Whf()
170 w(wi), h(he), format(f), size(s) {} in Whf()
323 PipeArgs(eMdpFlags f, Whf _whf,
326 mdpFlags(f), in mdpFlags()
348 inline void setMdpFlags(eMdpFlags& f, eMdpFlags v) { in setMdpFlags() argument
349 f = static_cast<eMdpFlags>(setBit(f, v)); in setMdpFlags()
352 inline void clearMdpFlags(eMdpFlags& f, eMdpFlags v) { in clearMdpFlags() argument
353 f = static_cast<eMdpFlags>(clrBit(f, v)); in clearMdpFlags()
[all …]
/hardware/qcom/display/msm8974/liboverlay/
DoverlayUtils.h194 Whf(uint32_t wi, uint32_t he, uint32_t f) : in Whf()
195 w(wi), h(he), format(f), size(0) {} in Whf()
196 Whf(uint32_t wi, uint32_t he, uint32_t f, uint32_t s) : in Whf()
197 w(wi), h(he), format(f), size(s) {} in Whf()
354 PipeArgs(eMdpFlags f, Whf _whf, in PipeArgs()
357 mdpFlags(f), in PipeArgs()
381 inline void setMdpFlags(eMdpFlags& f, eMdpFlags v) { in setMdpFlags() argument
382 f = static_cast<eMdpFlags>(setBit(f, v)); in setMdpFlags()
385 inline void clearMdpFlags(eMdpFlags& f, eMdpFlags v) { in clearMdpFlags() argument
386 f = static_cast<eMdpFlags>(clrBit(f, v)); in clearMdpFlags()
[all …]
/hardware/intel/common/libva/test/encode/
Davcenc.c1375 static void encode_pb_pictures(FILE *yuv_fp, FILE *avc_fp, int f, int nbframes, int next_f) in encode_pb_pictures() argument
1379 enc_frame_number, f + nbframes, in encode_pb_pictures()
1381 SLICE_TYPE_P, 1, f); in encode_pb_pictures()
1385 enc_frame_number + 1, f + i, in encode_pb_pictures()
1387 SLICE_TYPE_B, 1, f + i + 1); in encode_pb_pictures()
1391 enc_frame_number + 1, f + nbframes - 1, in encode_pb_pictures()
1552 int f; in main() local
1642 for ( f = 0; f < frame_number; ) { //picture level loop in main()
1650 encode_picture(yuv_fp, avc_fp,enc_frame_number, f, f==0, SLICE_TYPE_I, 0, f+1); in main()
1651 f++; in main()
[all …]
/hardware/intel/common/libva/test/transcode/
Dmpeg2transcode.cpp2966 static void encode_pb_pictures(FILE *yuv_fp, FILE *avc_fp, int f, int nbframes, int next_f) in encode_pb_pictures() argument
2970 enc_frame_number, f + nbframes, in encode_pb_pictures()
2972 SLICE_TYPE_P, 1, f); in encode_pb_pictures()
2976 enc_frame_number + 1, f + i, in encode_pb_pictures()
2978 SLICE_TYPE_B, 1, f + i + 1); in encode_pb_pictures()
2982 enc_frame_number + 1, f + nbframes - 1, in encode_pb_pictures()
3206 int f; in encode_file() local
3231 for ( int f = 0; f < frame_number; ) { //picture level loop in encode_file() local
3239 encode_picture(yuv_fp, avc_fp,enc_frame_number, f, f==0, SLICE_TYPE_I, 0, f+1); in encode_file()
3240 f++; in encode_file()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/halloc/src/
Dmacros.h23 #define structof(p,t,f) ((t*)(- (ptrdiff_t) offsetof(t,f) + (char*)(p))) argument
/hardware/qcom/display/msm8084/liboverlay/
DoverlayUtils.h198 Whf(uint32_t wi, uint32_t he, uint32_t f) : in Whf()
199 w(wi), h(he), format(f), size(0) {} in Whf()
200 Whf(uint32_t wi, uint32_t he, uint32_t f, uint32_t s) : in Whf()
201 w(wi), h(he), format(f), size(s) {} in Whf()
361 PipeArgs(eMdpFlags f, Whf _whf,
364 mdpFlags(f), in mdpFlags()
388 inline void setMdpFlags(eMdpFlags& f, eMdpFlags v) { in setMdpFlags() argument
389 f = static_cast<eMdpFlags>(setBit(f, v)); in setMdpFlags()
392 inline void clearMdpFlags(eMdpFlags& f, eMdpFlags v) { in clearMdpFlags() argument
393 f = static_cast<eMdpFlags>(clrBit(f, v)); in clearMdpFlags()
[all …]
/hardware/qcom/display/msm8960/liboverlay/
DoverlayUtils.h194 Whf(uint32_t wi, uint32_t he, uint32_t f) : in Whf()
195 w(wi), h(he), format(f), size(0) {} in Whf()
196 Whf(uint32_t wi, uint32_t he, uint32_t f, uint32_t s) : in Whf()
197 w(wi), h(he), format(f), size(s) {} in Whf()
353 PipeArgs(eMdpFlags f, Whf _whf, in PipeArgs()
356 mdpFlags(f), in PipeArgs()
380 inline void setMdpFlags(eMdpFlags& f, eMdpFlags v) { in setMdpFlags() argument
381 f = static_cast<eMdpFlags>(setBit(f, v)); in setMdpFlags()
384 inline void clearMdpFlags(eMdpFlags& f, eMdpFlags v) { in clearMdpFlags() argument
385 f = static_cast<eMdpFlags>(clrBit(f, v)); in clearMdpFlags()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_debugmodes.c16 static void log_frame_info(VP9_COMMON *cm, const char *str, FILE *f) { in log_frame_info() argument
17 fprintf(f, "%s", str); in log_frame_info()
18 fprintf(f, "(Frame %d, Show:%d, Q:%d): \n", cm->current_video_frame, in log_frame_info()
Dvp9_entropymv.c144 int s, z, c, o, d, e, f; in inc_mv_component() local
154 f = (o >> 1) & 3; /* fractional pel mv data */ in inc_mv_component()
159 comp_counts->class0_fp[d][f] += incr; in inc_mv_component()
166 comp_counts->fp[f] += incr; in inc_mv_component()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dwebmdec.c18 FILE *f = userdata; in nestegg_read_cb() local
20 if (fread(buffer, 1, length, f) < length) { in nestegg_read_cb()
21 if (ferror(f)) in nestegg_read_cb()
23 if (feof(f)) in nestegg_read_cb()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_temporal_filter.c206 YV12_BUFFER_CONFIG *f = cpi->frames[alt_ref_index]; in temporal_filter_iterate_c() local
296 vp9_temporal_filter_apply(f->y_buffer + mb_y_offset, f->y_stride, in temporal_filter_iterate_c()
300 vp9_temporal_filter_apply(f->u_buffer + mb_uv_offset, f->uv_stride, in temporal_filter_iterate_c()
305 vp9_temporal_filter_apply(f->v_buffer + mb_uv_offset, f->uv_stride, in temporal_filter_iterate_c()
362 mb_y_offset += 16 * (f->y_stride - mb_cols); in temporal_filter_iterate_c()
363 mb_uv_offset += mb_uv_height * (f->uv_stride - mb_cols); in temporal_filter_iterate_c()
/hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
Dmpu_iio.c453 #define VARVAL(f, v) printf("\t%s : " f "\n", #v, v); in dump_dmp_event_struct() argument
652 struct dmp_feat_t f = { in main() local
658 dmp_feat[pollfds_used] = f; in main()
662 struct dmp_feat_t f = { in main() local
668 dmp_feat[pollfds_used] = f; in main()
682 struct dmp_feat_t f = { in main() local
688 dmp_feat[pollfds_used] = f; in main()
692 struct dmp_feat_t f = { in main() local
698 dmp_feat[pollfds_used] = f; in main()
/hardware/ti/omap4-aah/domx/
DAndroid.mk10 OMAP4_DEBUG_LDFLAGS:= $(foreach f, $(strip malloc realloc calloc free), -Wl,--wrap=$(f))

123456