Searched refs:file (Results 1 - 25 of 290) sorted by relevance

1234567891011>>

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dvideo_writer.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
19 FILE *file; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info, argument
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
39 FILE *const file = fopen(filename, "wb"); local
40 if (!file)
49 writer->file = file;
[all...]
H A Dvideo_reader.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
23 FILE *file; member in struct:VpxVideoReaderStruct
32 FILE *const file = fopen(filename, "rb"); local
33 if (!file)
34 return NULL; // Can't open file
36 if (fread(header, 1, 32, file) != 32)
37 return NULL; // Can't read file header
49 reader->file
[all...]
H A Dvpxstats.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
24 stats->file = fopen(fpf, "wb");
27 res = (stats->file != NULL);
34 stats->file = fdopen(fd, "rb");
42 stats->file = fopen(fpf, "rb");
44 if (fseek(stats->file, 0, SEEK_END))
45 fatal("First-pass stats file must be seekable!");
47 stats->buf.sz = stats->buf_alloc_sz = ftell(stats->file);
[all...]
/hardware/intel/common/libva/
H A Dstyle_unify2 file=$(find . -name "*.[ch]" -o -name "*.cpp")
3 for i in $file
/hardware/ti/omap4xxx/domx/mm_osal/src/
H A Dtimm_osal_trace.c34 * @file timm_osal_trace.c
35 * This file contains methods that provides the functionality
81 static const char *simplify_path(const char *file) argument
83 while (file)
85 char c = file[0];
88 file++;
90 return file;
112 ALOGD("%s:%d\t%s()\t", simplify_path(loc->file), loc->line,
122 printf("%s:%d\t%s()\t", simplify_path(loc->file), loc->line,
/hardware/intel/img/libdrm/
H A Dmissing26 # distribute this file as part of a program that contains a
57 # a file that requires a minimum version. In this case we
79 aclocal touch file \`aclocal.m4'
80 autoconf touch file \`configure'
81 autoheader touch file \`config.h.in'
82 autom4te touch the output file, or create a stub one
86 help2man touch the output file
88 makeinfo touch the output file
198 file=`echo "$*" | sed -n "$sed_output"`
199 test -z "$file"
[all...]
/hardware/intel/img/psb_video/
H A Dstyle_unify2 file=$(find . -name "*.[ch]" -o -name "*.cpp")
3 for i in $file
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
H A Dhmm_dflt_abort.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
16 /* The function in this file performs default actions if self-auditing
22 ** to the write system call using file handle number 2.
30 /* Print abort message, file and line. Terminate execution.
32 void hmm_dflt_abort(const char *file, const char *line) { argument
45 fputs(file, stderr);
/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
H A Dand_constructor.c36 FILE *file; member in struct:inv_construct_t
61 MPL_LOGE("Error : file name and path too long, 100 characters limit\n");
126 if (inv_construct.file == NULL) {
127 inv_construct.file = fopen(playback_filename, "rb");
128 if (!inv_construct.file) {
129 MPL_LOGE("Error : cannot find or open playback file '%s'\n",
136 r = fread(&type, sizeof(type), 1, inv_construct.file);
138 MPL_LOGV("read 0 bytes, PLAYBACK file closed\n");
140 fclose(inv_construct.file);
146 r = fread(gyro, sizeof(gyro[0]), 3, inv_construct.file);
[all...]
/hardware/ti/omap4-aah/domx/mm_osal/src/
H A Dtimm_osal_trace.c34 * @file timm_osal_trace.c
35 * This file contains methods that provides the functionality
82 static const char *simplify_path(const char *file) argument
84 while (file)
86 char c = file[0];
89 file++;
91 return file;
142 ALOGD("%s:%d\t%s()\t", simplify_path(loc->file), loc->line,
147 ALOGD("%s:%d\t%s()\t", simplify_path(loc->file), loc->line,
159 printf("%s:%d\t%s()\t", simplify_path(loc->file), lo
[all...]
/hardware/intel/img/libdrm/libdrm/radeon/
H A Dradeon_track.h35 char *file; member in struct:radeon_track_event
53 const char *file,
62 FILE *file);
H A Dradeon_track.c36 const char *file,
51 event->file = strdup(file);
54 if (event->file == NULL || event->func == NULL || event->op == NULL) {
55 free(event->file);
101 free(event->file);
111 void radeon_tracker_print(struct radeon_tracker *tracker, FILE *file) argument
120 fprintf(file, "[0x%08X] :\n", track->key);
123 fprintf(file, " [0x%08X:%s](%s:%s:%d)\n",
124 track->key, event->op, event->file,
35 radeon_track_add_event(struct radeon_track *track, const char *file, const char *func, const char *op, unsigned line) argument
[all...]
H A Dradeon_cs.h95 const char *file,
99 const char *file,
106 void (*cs_print)(struct radeon_cs *cs, FILE *file);
138 const char *file,
142 return cs->csm->funcs->cs_begin(cs, ndw, file, func, line);
146 const char *file,
150 return cs->csm->funcs->cs_end(cs, file, func, line);
173 static inline void radeon_cs_print(struct radeon_cs *cs, FILE *file) argument
175 cs->csm->funcs->cs_print(cs, file);
136 radeon_cs_begin(struct radeon_cs *cs, uint32_t ndw, const char *file, const char *func, int line) argument
145 radeon_cs_end(struct radeon_cs *cs, const char *file, const char *func, int line) argument
H A Dradeon_cs_gem.c206 const char *file,
215 file, func, line);
221 cs->section_file = file;
242 const char *file,
249 file, func, line);
257 file, func, line);
352 static void cs_gem_print(struct radeon_cs *cs, FILE *file) argument
363 fprintf(file, "Pkt0 at %d (%d dwords):\n", i, cnt);
367 fprintf(file, " 0x%08X -> 0x%04X\n",
372 fprintf(file, "
204 cs_gem_begin(struct radeon_cs *cs, uint32_t ndw, const char *file, const char *func, int line) argument
241 cs_gem_end(struct radeon_cs *cs, const char *file, const char *func, int line) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_debugmodes.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
25 static void print_mi_data(VP9_COMMON *cm, FILE *file, const char *descriptor, argument
35 log_frame_info(cm, descriptor, file);
38 fprintf(file, "%c ", prefix);
40 fprintf(file, "%2d ",
45 fprintf(file, "\n");
48 fprintf(file, "\n");
50 void vp9_print_modes_and_motion_vectors(VP9_COMMON *cm, const char *file) { argument
[all...]
/hardware/invensense/60xx/libsensors_iio/software/core/driver/include/
H A Dmlinclude.h21 extern int functionEnterLog(const char *file, const char *func);
22 extern int functionExitLog(const char *file, const char *func);
/hardware/invensense/60xx/mlsdk/mllite/
H A Dmlinclude.h6 you may not use this file except in compliance with the License.
33 extern int functionEnterLog(const char *file, const char *func);
34 extern int functionExitLog(const char *file, const char *func);
/hardware/invensense/6515/libsensors_iio/software/core/driver/include/
H A Dmlinclude.h21 extern int functionEnterLog(const char *file, const char *func);
22 extern int functionExitLog(const char *file, const char *func);
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
H A Dmlinclude.h21 extern int functionEnterLog(const char *file, const char *func);
22 extern int functionExitLog(const char *file, const char *func);
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
H A DOMX_DebugMem.h16 const char* file, const char* func, int line);
18 const char* file, const char* func, int line);
20 const char* file, const char* func, int line);
22 const char* file, const char* func, int line);
24 const char* file, const char* func, int line);
26 void OMX_DebugMem_dump(const char *file, const char *func, int line);
/hardware/ti/omap4-aah/domx/omx_core/inc/
H A DOMX_DebugMem.h40 const char* file, const char* func, int line);
42 const char* file, const char* func, int line);
44 const char* file, const char* func, int line);
46 const char* file, const char* func, int line);
48 const char* file, const char* func, int line);
50 void OMX_DebugMem_dump(const char *file, const char *func, int line);
/hardware/ti/omap4xxx/domx/omx_core/inc/
H A DOMX_DebugMem.h40 const char* file, const char* func, int line);
42 const char* file, const char* func, int line);
44 const char* file, const char* func, int line);
46 const char* file, const char* func, int line);
48 const char* file, const char* func, int line);
50 void OMX_DebugMem_dump(const char *file, const char *func, int line);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
H A DAndroid.mk5 ## that can be found in the LICENSE file in the root of the source
7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree.
12 # This file is to be used for compiling libvpx for Android using the NDK.
26 # Place an Android.mk file in the jni directory that references the
27 # Android.mk file in the libvpx directory:
45 # --target=arm5te-android-gcc and modify the Application.mk file to
81 # Arguments : 1: assembly offsets file to be created
82 # 2: c file to base assembly offsets on
94 $$(call get-src-file
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/
H A Dvpx_mem_tracker.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
16 Stores a list of addreses, their size, and file and line they came from.
43 #include <string.h> // VXWORKS doesn't have a malloc/memory.h file,
50 #undef vpx_free // memory functions in this file
81 static void memory_tracker_check_integrity(char *file, unsigned int line);
83 char *file, unsigned int line,
124 FILE *file; member in struct:__anon668
233 if (!g_logging.type && g_logging.file
254 vpx_memory_tracker_add(size_t addr, unsigned int size, char *file, unsigned int line, int padded) argument
311 vpx_memory_tracker_check_integrity(char *file, unsigned int line) argument
478 memory_tracker_check_integrity(char *file, unsigned int line) argument
530 memory_tracker_add(size_t addr, unsigned int size, char *file, unsigned int line, int padded) argument
[all...]
H A Dvpx_mem.h5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
123 extern void vpx_memory_tracker_check_integrity(char *file, unsigned int line);
139 void *xvpx_memalign(size_t align, size_t size, char *file, int line);
140 void *xvpx_malloc(size_t size, char *file, int line);
141 void *xvpx_calloc(size_t num, size_t size, char *file, int line);
142 void *xvpx_realloc(void *memblk, size_t size, char *file, int line);
143 void xvpx_free(void *memblk, char *file, int line);
144 void *xvpx_mem_alloc(int id, size_t size, size_t align, char *file, in
[all...]

Completed in 1023 milliseconds

1234567891011>>