Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 25 of 201) 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.h75 void write_webm_file_header(struct EbmlGlobal *glob,
81 void write_webm_block(struct EbmlGlobal *glob,
85 void write_webm_file_footer(struct EbmlGlobal *glob, int hash);
/external/libvpx/libvpx/third_party/libmkv/
DWebMElement.c17 void writeHeader(EbmlGlobal *glob) { in writeHeader() argument
19 Ebml_StartSubElement(glob, &start, EBML); in writeHeader()
20 Ebml_SerializeUnsigned(glob, EBMLVersion, 1); in writeHeader()
21 Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); // EBML Read Version in writeHeader()
22 Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); // EBML Max ID Length in writeHeader()
23 Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); // EBML Max Size Length in writeHeader()
24 Ebml_SerializeString(glob, DocType, "webm"); // Doc Type in writeHeader()
25 Ebml_SerializeUnsigned(glob, DocTypeVersion, 2); // Doc Type Version in writeHeader()
26 Ebml_SerializeUnsigned(glob, DocTypeReadVersion, 2); // Doc Type Read Version in writeHeader()
27 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
23 memcpy(&(glob->buf[glob->offset]), q, 1); in _Serialize()
24 glob->offset++; in _Serialize()
28 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { in Ebml_Serialize() argument
34 _Serialize(glob, p, q); in Ebml_Serialize()
38 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/chrome/common/extensions/
Duser_script.cc25 for (std::vector<std::string>::const_iterator glob = globs->begin(); in UrlMatchesGlobs() local
26 glob != globs->end(); ++glob) { in UrlMatchesGlobs()
27 if (MatchPattern(url.spec(), *glob)) in UrlMatchesGlobs()
115 std::vector<std::string>::const_iterator glob; in Pickle() local
117 for (glob = globs_.begin(); glob != globs_.end(); ++glob) { in Pickle()
118 pickle->WriteString(*glob); in Pickle()
121 for (glob = exclude_globs_.begin(); glob != exclude_globs_.end(); ++glob) { in Pickle()
122 pickle->WriteString(*glob); in Pickle()
165 std::string glob; in Unpickle() local
166 CHECK(pickle.ReadString(iter, &glob)); in Unpickle()
[all …]
/external/chromium_org/media/webm/chromeos/
Debml_writer.cc20 void MEDIA_EXPORT Ebml_Write(EbmlGlobal* glob, in Ebml_Write() argument
23 glob->write_cb.Run(buffer, len); in Ebml_Write()
26 void MEDIA_EXPORT Ebml_Serialize(EbmlGlobal* glob, in Ebml_Serialize() argument
30 glob->serialize_cb.Run(buffer, buffer_size, len); in Ebml_Serialize()
/external/chromium_org/extensions/common/
Duser_script.cc16 for (std::vector<std::string>::const_iterator glob = globs->begin(); in UrlMatchesGlobs() local
17 glob != globs->end(); ++glob) { in UrlMatchesGlobs()
18 if (MatchPattern(url.spec(), *glob)) in UrlMatchesGlobs()
143 for (std::vector<std::string>::const_iterator glob = globs.begin(); in PickleGlobs() local
144 glob != globs.end(); ++glob) { in PickleGlobs()
145 pickle->WriteString(*glob); in PickleGlobs()
194 std::string glob; in UnpickleGlobs() local
195 CHECK(pickle.ReadString(iter, &glob)); in UnpickleGlobs()
196 globs->push_back(glob); in UnpickleGlobs()
/external/chromium_org/ui/base/dragdrop/
Dos_exchange_data_win_unittest.cc52 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input.size() + 1)); in TEST() local
54 SIZE_T sz = GlobalSize(glob); in TEST()
55 base::win::ScopedHGlobal<wchar_t> global_lock(glob); in TEST()
58 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/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/chrome/common/extensions/api/
DPRESUBMIT_test.py6 import glob
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/chrome/tools/build/win/
Dcreate_installer_archive.py16 import glob
120 src_paths = glob.glob(os.path.join(src_dir, option))
155 dll_path = glob.glob(os.path.join(temp_dir, 'Chrome-bin', '*', 'chrome.dll'))
384 crt_dlls = glob.glob(
388 crt_dlls = glob.glob(
413 crt_dlls = glob.glob(os.path.join(sys_dll_dir, "msvc*0d.dll"))
415 crt_dlls = glob.glob(os.path.join(sys_dll_dir, "msvc*0.dll"))
448 build_dlls = glob.glob(os.path.join(build_dir, '*.dll'))
450 glob.glob(os.path.join(version_dir, '*.dll'))]
/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
266 for FullFileName in glob.glob(Dir + "/*"):
346 for F in glob.glob(SBOutputDir + "/*/*.plist"):
360 Failures = glob.glob(SBOutputDir + "/*/failures/*.stderr.txt")
364 Plists = glob.glob(SBOutputDir + "/*/*.plist")
413 RefList = glob.glob(RefDir + "/*")
414 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/chrome/test/functional/
Dcrash_reporter.py6 import glob
42 dmp_files = glob.glob(os.path.join(breakpad_folder, '*.dmp'))
Dcodesign.py7 import glob
42 framework_path = glob.glob(os.path.join(app_path, 'Contents', 'Versions',
/external/ceres-solver/scripts/
Dmake_docs.py35 import glob
73 for name in glob.glob("%s/*.html" % html_dir):
/external/chromium_org/tools/valgrind/
Dbrowser_wrapper_win.py5 import glob
39 wrapper_pid += "_%d" % len(glob.glob(old_logdir + "\\*"))
/external/harfbuzz_ng/contrib/python/
Dsetup.py5 from glob import glob
33 scripts = glob('scripts/*'),
/external/chromium_org/tools/gyp/test/win/linker-flags/
Dupdate_pgd.py8 import glob
33 pgc_files= glob.glob(pgc_filepattern)
/external/llvm/test/CodeGen/ARM/
Dcompare-call.ll4 define void @test3(float* %glob, i32 %X) {
6 %tmp = load float* %glob ; <float> [#uses=1]
7 %tmp2 = getelementptr float* %glob, i32 2 ; <float*> [#uses=1]

123456789