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

12345

/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
23 memcpy(&(glob->buf[glob->offset]), q, 1);
24 glob->offset++;
28 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { argument
34 _Serialize(glob,
38 Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) argument
46 Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc) argument
[all...]
H A DWebMElement.c17 void writeHeader(EbmlGlobal *glob) { argument
19 Ebml_StartSubElement(glob, &start, EBML);
20 Ebml_SerializeUnsigned(glob, EBMLVersion, 1);
21 Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); // EBML Read Version
22 Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); // EBML Max ID Length
23 Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); // EBML Max Size Length
24 Ebml_SerializeString(glob, DocType, "webm"); // Doc Type
25 Ebml_SerializeUnsigned(glob, DocTypeVersion, 2); // Doc Type Version
26 Ebml_SerializeUnsigned(glob, DocTypeReadVersion, 2); // Doc Type Read Version
27 Ebml_EndSubElement(glob,
30 writeSimpleBlock(EbmlGlobal *glob, unsigned char trackNumber, short timeCode, int isKeyframe, unsigned char lacingFlag, int discardable, unsigned char *data, unsigned long dataLength) argument
55 writeVideoTrack(EbmlGlobal *glob, unsigned int trackNumber, int flagLacing, char *codecId, unsigned int pixelWidth, unsigned int pixelHeight, double frameRate) argument
77 writeAudioTrack(EbmlGlobal *glob, unsigned int trackNumber, int flagLacing, 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/media/webm/chromeos/
H A Debml_writer.cc20 void MEDIA_EXPORT Ebml_Write(EbmlGlobal* glob, argument
23 glob->write_cb.Run(buffer, len);
26 void MEDIA_EXPORT Ebml_Serialize(EbmlGlobal* glob, argument
30 glob->serialize_cb.Run(buffer, buffer_size, len);
/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/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/compiler-rt/lib/asan/lit_tests/TestCases/
H A Dinit-order-pthread-create.cc26 void *glob = foo((void*)0x1234); variable
30 printf("%p %p\n", glob, glob2);
/external/chromium_org/chrome/test/functional/
H A Dcrash_reporter.py6 import glob namespace
42 dmp_files = glob.glob(os.path.join(breakpad_folder, '*.dmp'))
H A Dcodesign.py7 import glob namespace
42 framework_path = glob.glob(os.path.join(app_path, 'Contents', 'Versions',
/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/lib/asan/lit_tests/TestCases/Linux/
H A Dsyscalls.cc6 #include <glob.h>
/external/compiler-rt/lib/msan/lit_tests/Linux/
H A Dglob_nomatch.cc5 #include <glob.h>
15 int res = glob(buf, 0, 0, &globbuf);
/external/chromium_org/chrome/common/extensions/api/
H A DPRESUBMIT_test.py6 import glob namespace
48 for filename in sorted(glob.glob('test_presubmit/invalid_*.json'))
75 for filename in sorted(glob.glob('test_presubmit/invalid_*.idl'))
/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/chrome/common/extensions/
H A Duser_script.cc25 for (std::vector<std::string>::const_iterator glob = globs->begin();
26 glob != globs->end(); ++glob) {
27 if (MatchPattern(url.spec(), *glob))
115 std::vector<std::string>::const_iterator glob; local
117 for (glob = globs_.begin(); glob != globs_.end(); ++glob) {
118 pickle->WriteString(*glob);
121 for (glob
165 std::string glob; local
173 std::string glob; local
[all...]
/external/ceres-solver/scripts/
H A Dmake_docs.py35 import glob namespace
73 for name in glob.glob("%s/*.html" % html_dir):
/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/harfbuzz_ng/contrib/python/
H A Dsetup.py5 from glob import glob namespace
33 scripts = glob('scripts/*'),
/external/chromium/base/win/
H A Dscoped_hglobal.h20 explicit ScopedHGlobal(HGLOBAL glob) : glob_(glob) { argument
/external/chromium_org/base/win/
H A Dscoped_hglobal.h19 explicit ScopedHGlobal(HGLOBAL glob) : glob_(glob) { argument

Completed in 629 milliseconds

12345