Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 25 of 212) sorted by relevance

123456789

/external/libvpx/libvpx/
Dwebmenc.c18 void Ebml_Write(struct EbmlGlobal *glob, in Ebml_Write() argument
21 (void) fwrite(buffer_in, 1, len, glob->stream); in Ebml_Write()
27 Ebml_Write(glob, &x, 1); \
30 void Ebml_Serialize(struct EbmlGlobal *glob, in Ebml_Serialize() argument
65 static void Ebml_SerializeUnsigned32(struct EbmlGlobal *glob, in Ebml_SerializeUnsigned32() argument
69 Ebml_WriteID(glob, class_id); in Ebml_SerializeUnsigned32()
70 Ebml_Serialize(glob, &sizeSerialized, sizeof(sizeSerialized), 1); in Ebml_SerializeUnsigned32()
71 Ebml_Serialize(glob, &ui, sizeof(ui), 4); in Ebml_SerializeUnsigned32()
74 static void Ebml_StartSubElement(struct EbmlGlobal *glob, in Ebml_StartSubElement() argument
78 Ebml_WriteID(glob, class_id); in Ebml_StartSubElement()
[all …]
Dwebmenc.h79 void write_webm_file_header(struct EbmlGlobal *glob,
85 void write_webm_block(struct EbmlGlobal *glob,
89 void write_webm_file_footer(struct EbmlGlobal *glob, int hash);
/external/libvpx/libvpx/third_party/libmkv/
DWebMElement.c18 void writeHeader(EbmlGlobal *glob) { in writeHeader() argument
20 Ebml_StartSubElement(glob, &start, EBML); in writeHeader()
21 Ebml_SerializeUnsigned(glob, EBMLVersion, 1); in writeHeader()
22 Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); // EBML Read Version in writeHeader()
23 Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); // EBML Max ID Length in writeHeader()
24 Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); // EBML Max Size Length in writeHeader()
25 Ebml_SerializeString(glob, DocType, "webm"); // Doc Type in writeHeader()
26 Ebml_SerializeUnsigned(glob, DocTypeVersion, 2); // Doc Type Version in writeHeader()
27 Ebml_SerializeUnsigned(glob, DocTypeReadVersion, 2); // Doc Type Read Version in writeHeader()
28 Ebml_EndSubElement(glob, &start); in writeHeader()
[all …]
DEbmlWriter.c21 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val) { in Ebml_WriteLen() argument
37 Ebml_Serialize(glob, (void *) &val, sizeof(val), size); in Ebml_WriteLen()
40 void Ebml_WriteString(EbmlGlobal *glob, const char *str) { in Ebml_WriteString() argument
43 Ebml_WriteLen(glob, size); in Ebml_WriteString()
47 Ebml_Write(glob, str, (unsigned long)size); in Ebml_WriteString()
50 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr) { in Ebml_WriteUTF8() argument
58 Ebml_WriteLen(glob, size); in Ebml_WriteUTF8()
59 Ebml_Write(glob, wstr, (unsigned long)size); in Ebml_WriteUTF8()
62 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) { in Ebml_WriteID() argument
74 Ebml_Serialize(glob, (void *)&class_id, sizeof(class_id), len); in Ebml_WriteID()
[all …]
DEbmlBufferWriter.c11 void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { in Ebml_Write() argument
12 unsigned char *src = glob->buf; in Ebml_Write()
13 src += glob->offset; in Ebml_Write()
15 glob->offset += len; in Ebml_Write()
18 static void _Serialize(EbmlGlobal *glob, const unsigned char *p, const unsigned char *q) { in _Serialize() argument
21 memcpy(&(glob->buf[glob->offset]), q, 1); in _Serialize()
22 glob->offset++; in _Serialize()
26 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { in Ebml_Serialize() argument
32 _Serialize(glob, p, q); in Ebml_Serialize()
36 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) { in Ebml_StartSubElement() argument
[all …]
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, unsigned long class_id, double d);
[all …]
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
Dlist_ports_posix.py22 import glob
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.glob('/dev/ttyf*')
67 devices = glob.glob('/dev/tty*p0')
73 devices = glob.glob('/dev/tty*c')
79 devices = glob.glob('/dev/tty*')
Dlist_ports_linux.py11 import glob
144 devices = glob.glob('/dev/ttyS*') + glob.glob('/dev/ttyUSB*') + glob.glob('/dev/ttyACM*')
/external/ltrace/
Dglob.c28 match_character_class(const char *glob, size_t length, size_t from) in match_character_class() argument
31 const char *colon = memchr(glob + from + 2, ':', length - 1); in match_character_class()
34 return colon - glob; in match_character_class()
38 match_brack(const char *glob, size_t length, size_t from, int *exclmp) in match_brack() argument
47 if (glob[i] == '^' || glob[i] == '!') { in match_brack()
48 *exclmp = glob[i++] == '!'; in match_brack()
55 if (glob[i] == '[' && glob[i + 1] == ':') { in match_brack()
56 ssize_t j = match_character_class(glob, length, i); in match_brack()
65 char c = glob[i]; in match_brack()
66 if (c == '[' && glob[i + 1] == ':') { in match_brack()
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/
Dwebmenc.cc23 void write_webm_file_header(struct EbmlGlobal *glob, in write_webm_file_header() argument
28 mkvmuxer::MkvWriter *const writer = new mkvmuxer::MkvWriter(glob->stream); in write_webm_file_header()
38 if (!glob->debug) { in write_webm_file_header()
52 if (glob->debug) { in write_webm_file_header()
55 glob->writer = writer; in write_webm_file_header()
56 glob->segment = segment; in write_webm_file_header()
59 void write_webm_block(struct EbmlGlobal *glob, in write_webm_block() argument
63 reinterpret_cast<mkvmuxer::Segment*>(glob->segment); in write_webm_block()
66 if (pts_ns <= glob->last_pts_ns) in write_webm_block()
67 pts_ns = glob->last_pts_ns + 1000000; in write_webm_block()
[all …]
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/chromium_org/build/android/gyp/
Ddelete_files.py9 import glob
36 matching_files = glob.glob(target_pattern)
39 files_to_keep = glob.glob(keep_pattern)
/external/compiler-rt/test/tsan/
Dpthread_atfork_deadlock.c11 int glob = 0; variable
15 glob++; in worker()
21 glob++; in atfork()
28 glob++; in main()
/external/chromium_org/ui/base/dragdrop/
Dos_exchange_data_win_unittest.cc51 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input.size() + 1)); in TEST() local
53 SIZE_T sz = GlobalSize(glob); in TEST()
54 base::win::ScopedHGlobal<wchar_t*> global_lock(glob); in TEST()
57 medium.hGlobal = glob; in TEST()
89 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input.size() + 1)); in TEST() local
91 SIZE_T sz = GlobalSize(glob); in TEST()
92 base::win::ScopedHGlobal<wchar_t*> global_lock(glob); in TEST()
95 medium.hGlobal = glob; in TEST()
101 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input2.size() + 1)); in TEST() local
103 SIZE_T sz = GlobalSize(glob); in TEST()
[all …]
/external/chromium_org/chrome/tools/build/win/
Dcreate_installer_archive.py16 import glob
118 src_paths = glob.glob(os.path.join(src_dir, option))
153 dll_path = glob.glob(os.path.join(temp_dir, 'Chrome-bin', '*', 'chrome.dll'))
382 crt_dlls = glob.glob(
386 crt_dlls = glob.glob(
411 crt_dlls = glob.glob(os.path.join(sys_dll_dir, "msvc*0d.dll"))
413 crt_dlls = glob.glob(os.path.join(sys_dll_dir, "msvc*0.dll"))
453 setup_component_dlls = glob.glob(os.path.join(build_dir,
463 build_dlls = glob.glob(os.path.join(build_dir, '*.dll'))
465 glob.glob(os.path.join(version_dir, '*.dll'))]
/external/chromium_org/tools/gyp/test/actions/
Dgyptest-all.py11 import glob
73 for file in (glob.glob('relocate/src/dep_*.txt') +
74 glob.glob('relocate/src/deps_all_done_*.txt')):
/external/chromium_org/extensions/common/
Duser_script.cc21 for (std::vector<std::string>::const_iterator glob = globs->begin(); in UrlMatchesGlobs() local
22 glob != globs->end(); ++glob) { in UrlMatchesGlobs()
23 if (MatchPattern(url.spec(), *glob)) in UrlMatchesGlobs()
159 for (std::vector<std::string>::const_iterator glob = globs.begin(); in PickleGlobs() local
160 glob != globs.end(); ++glob) { in PickleGlobs()
161 pickle->WriteString(*glob); in PickleGlobs()
212 std::string glob; in UnpickleGlobs() local
213 CHECK(pickle.ReadString(iter, &glob)); in UnpickleGlobs()
214 globs->push_back(glob); in UnpickleGlobs()
/external/clang/test/SemaObjC/
Dconflict-nonfragile-abi2.m5 int glob;
8 @property int glob; property
19 - (int) Meth { return glob; } // no warning
20 @synthesize glob;
/external/llvm/test/DebugInfo/Inputs/
Ddwarfdump-test-32bit.elf.c3 extern int glob;
7 return a + glob; in foo()
12 return glob - foo(a); in bar()
/external/clang/utils/analyzer/
DSATestBuild.py44 import glob
267 for FullFileName in glob.glob(Dir + "/*"):
347 for F in glob.glob(SBOutputDir + "/*/*.plist"):
361 Failures = glob.glob(SBOutputDir + "/*/failures/*.stderr.txt")
365 Plists = glob.glob(SBOutputDir + "/*/*.plist")
414 RefList = glob.glob(RefDir + "/*")
415 NewList = glob.glob(NewDir + "/*")
/external/chromium_org/tools/idl_parser/
Drun_tests.py6 import glob
12 for testname in glob.glob('*_test.py'):
Didl_parser_test.py6 import glob
23 self.filenames = glob.glob('test_parser/*_web.idl')
64 self.filenames = glob.glob('test_parser/*_ppapi.idl')
/external/chromium_org/v8/build/
Dgyp_v833 import glob
102 supplements = glob.glob(os.path.join(v8_root, '*', 'supplement.gypi'))
173 for f in glob.glob(os.path.join(v8_root, 'out', 'Makefile.*')):
/external/chromium_org/tools/valgrind/
Dbrowser_wrapper_win.py5 import glob
39 wrapper_pid += "_%d" % len(glob.glob(old_logdir + "\\*"))
/external/chromium_org/tools/gyp/test/win/linker-flags/
Dupdate_pgd.py8 import glob
33 pgc_files= glob.glob(pgc_filepattern)

123456789