Searched refs:glob (Results 1 - 25 of 141) sorted by relevance

123456

/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlWriter.h22 void Ebml_Serialize(EbmlGlobal *glob, const void *, int, unsigned long);
23 void Ebml_Write(EbmlGlobal *glob, const void *, unsigned long);
27 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val);
28 void Ebml_WriteString(EbmlGlobal *glob, const char *str);
29 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr);
30 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id);
31 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui);
32 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
33 void Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
34 void Ebml_SerializeFloat(EbmlGlobal *glob, unsigne
[all...]
H A DEbmlBufferWriter.c11 void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { argument
12 unsigned char *src = glob->buf;
13 src += glob->offset;
15 glob->offset += len;
18 static void _Serialize(EbmlGlobal *glob, const unsigned char *p, const unsigned char *q) { argument
21 memcpy(&(glob->buf[glob->offset]), q, 1);
22 glob->offset++;
26 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { argument
32 _Serialize(glob,
36 Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) argument
44 Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc) argument
[all...]
H A DWebMElement.c18 void writeHeader(EbmlGlobal *glob) { argument
20 Ebml_StartSubElement(glob, &start, EBML);
21 Ebml_SerializeUnsigned(glob, EBMLVersion, 1);
22 Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); // EBML Read Version
23 Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); // EBML Max ID Length
24 Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); // EBML Max Size Length
25 Ebml_SerializeString(glob, DocType, "webm"); // Doc Type
26 Ebml_SerializeUnsigned(glob, DocTypeVersion, 2); // Doc Type Version
27 Ebml_SerializeUnsigned(glob, DocTypeReadVersion, 2); // Doc Type Read Version
28 Ebml_EndSubElement(glob,
31 writeSimpleBlock(EbmlGlobal *glob, unsigned char trackNumber, short timeCode, int isKeyframe, unsigned char lacingFlag, int discardable, unsigned char *data, unsigned long dataLength) argument
56 writeVideoTrack(EbmlGlobal *glob, unsigned int trackNumber, int flagLacing, const char *codecId, unsigned int pixelWidth, unsigned int pixelHeight, double frameRate) argument
79 writeAudioTrack(EbmlGlobal *glob, unsigned int trackNumber, int flagLacing, const char *codecId, double samplingFrequency, unsigned int channels, unsigned char *private, unsigned long privateSize) argument
[all...]
H A DEbmlWriter.c21 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val) { argument
37 Ebml_Serialize(glob, (void *) &val, sizeof(val), size);
40 void Ebml_WriteString(EbmlGlobal *glob, const char *str) { argument
43 Ebml_WriteLen(glob, size);
47 Ebml_Write(glob, str, (unsigned long)size);
50 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr) { argument
58 Ebml_WriteLen(glob, size);
59 Ebml_Write(glob, wstr, (unsigned long)size);
62 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) { argument
74 Ebml_Serialize(glob, (voi
77 Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui) argument
84 Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui) argument
105 Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long bin) argument
116 Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d) argument
124 Ebml_WriteSigned16(EbmlGlobal *glob, short val) argument
129 Ebml_SerializeString(EbmlGlobal *glob, unsigned long class_id, const char *s) argument
134 Ebml_SerializeUTF8(EbmlGlobal *glob, unsigned long class_id, wchar_t *s) argument
139 Ebml_SerializeData(EbmlGlobal *glob, unsigned long class_id, unsigned char *data, unsigned long data_length) argument
145 Ebml_WriteVoid(EbmlGlobal *glob, unsigned long vSize) argument
[all...]
H A DEbmlBufferWriter.h15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
16 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
/external/libvpx/libvpx/
H A Dwebmenc.c18 void Ebml_Write(struct EbmlGlobal *glob, argument
21 (void) fwrite(buffer_in, 1, len, glob->stream);
27 Ebml_Write(glob, &x, 1); \
30 void Ebml_Serialize(struct EbmlGlobal *glob, argument
65 static void Ebml_SerializeUnsigned32(struct EbmlGlobal *glob, argument
69 Ebml_WriteID(glob, class_id);
70 Ebml_Serialize(glob, &sizeSerialized, sizeof(sizeSerialized), 1);
71 Ebml_Serialize(glob, &ui, sizeof(ui), 4);
74 static void Ebml_StartSubElement(struct EbmlGlobal *glob, argument
78 Ebml_WriteID(glob, class_i
83 Ebml_EndSubElement(struct EbmlGlobal *glob, EbmlLoc *ebmlLoc) argument
156 write_webm_file_header(struct EbmlGlobal *glob, const vpx_codec_enc_cfg_t *cfg, const struct vpx_rational *fps, stereo_format_t stereo_fmt, unsigned int fourcc) argument
213 write_webm_block(struct EbmlGlobal *glob, const vpx_codec_enc_cfg_t *cfg, const vpx_codec_cx_pkt_t *pkt) argument
292 write_webm_file_footer(struct EbmlGlobal *glob, int hash) argument
[all...]
/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-test-32bit.elf.c3 extern int glob;
7 return a + glob;
12 return glob - foo(a);
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports_posix.py22 import glob namespace
34 devices = glob.glob('/dev/com*')
39 devices = glob.glob('/dev/cua*')
46 devices = glob.glob('/dev/cuad*')
55 devices = glob.glob('/dev/dty*')
61 devices = glob
[all...]
/external/clang/test/Preprocessor/
H A Dmacro_rparen_scan2.c7 static int glob = (1 + FUNC(1 R_PAREN );
9 // CHECK: static int glob = (1 + 1 );
/external/compiler-rt/test/tsan/
H A Dpthread_atfork_deadlock.c11 int glob = 0; variable
15 glob++;
21 glob++;
28 glob++;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-global-ctor-dtor.cpp12 A glob; variable
/external/chromium_org/tools/idl_parser/
H A Drun_tests.py6 import glob namespace
12 for testname in glob.glob('*_test.py'):
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dwebmenc.cc23 void write_webm_file_header(struct EbmlGlobal *glob, argument
28 mkvmuxer::MkvWriter *const writer = new mkvmuxer::MkvWriter(glob->stream);
38 if (!glob->debug) {
52 if (glob->debug) {
55 glob->writer = writer;
56 glob->segment = segment;
59 void write_webm_block(struct EbmlGlobal *glob, argument
63 reinterpret_cast<mkvmuxer::Segment*>(glob->segment);
66 if (pts_ns <= glob->last_pts_ns)
67 pts_ns = glob
77 write_webm_file_footer(struct EbmlGlobal *glob) argument
[all...]
H A Dwebmenc.h41 void write_webm_file_header(struct EbmlGlobal *glob,
47 void write_webm_block(struct EbmlGlobal *glob,
51 void write_webm_file_footer(struct EbmlGlobal *glob);
/external/ltrace/
H A Dglob.h27 /* This is akin to regcomp(3), except it compiles a glob expression
28 * passed in GLOB. See glob(7) for more information about the syntax
30 int globcomp(regex_t *preg, const char *glob, int cflags);
H A Dglob.c28 match_character_class(const char *glob, size_t length, size_t from) argument
31 const char *colon = memchr(glob + from + 2, ':', length - 1);
34 return colon - glob;
38 match_brack(const char *glob, size_t length, size_t from, int *exclmp) argument
47 if (glob[i] == '^' || glob[i] == '!') {
48 *exclmp = glob[i++] == '!';
55 if (glob[i] == '[' && glob[i + 1] == ':') {
56 ssize_t j = match_character_class(glob, lengt
101 glob_to_regex(const char *glob, char **retp) argument
180 globcomp(regex_t *preg, const char *glob, int cflags) argument
196 translate(const char *glob, int exp_status, const char *expect) argument
218 try_match(const char *glob, const char *str, int expect) argument
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dinit-order-pthread-create.cc26 void *glob = foo((void*)0x1234); variable
30 printf("%p %p\n", glob, glob2);
/external/chromium_org/build/android/gyp/
H A Ddelete_files.py9 import glob namespace
36 matching_files = glob.glob(target_pattern)
39 files_to_keep = glob.glob(keep_pattern)
/external/chromium_org/tools/valgrind/
H A Dbrowser_wrapper_win.py5 import glob namespace
39 wrapper_pid += "_%d" % len(glob.glob(old_logdir + "\\*"))
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dsyscalls.cc9 #include <glob.h>
H A Dglob.cc9 #include <glob.h>
22 int res = glob(pattern.c_str(), 0, 0, &globbuf);
/external/compiler-rt/test/msan/Linux/
H A Dglob_nomatch.cc5 #include <glob.h>
15 int res = glob(buf, 0, 0, &globbuf);
/external/chromium_org/tools/gyp/test/actions/
H A Dgyptest-all.py11 import glob namespace
73 for file in (glob.glob('relocate/src/dep_*.txt') +
74 glob.glob('relocate/src/deps_all_done_*.txt')):
/external/chromium_org/tools/gyp/test/win/linker-flags/
H A Dupdate_pgd.py8 import glob namespace
33 pgc_files= glob.glob(pgc_filepattern)
/external/chromium_org/base/win/
H A Dscoped_hglobal.h19 explicit ScopedHGlobal(HGLOBAL glob) : glob_(glob) { argument

Completed in 655 milliseconds

123456