HomeSort by relevance Sort by last modified time
    Searched refs:glob (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/libvpx/libvpx/third_party/libmkv/
EbmlWriter.h 22 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...]
EbmlBufferWriter.c 11 void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) {
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) {
23 memcpy(&(glob->buf[glob->offset]), q, 1);
24 glob->offset++;
28 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) {
34 _Serialize(glob, p, q)
    [all...]
WebMElement.c 17 void writeHeader(EbmlGlobal *glob) {
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, &start)
    [all...]
EbmlWriter.c 21 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val) {
37 Ebml_Serialize(glob, (void *) &val, sizeof(val), size);
40 void Ebml_WriteString(EbmlGlobal *glob, const char *str) {
43 Ebml_WriteLen(glob, size);
47 Ebml_Write(glob, str, (unsigned long)size);
50 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr) {
58 Ebml_WriteLen(glob, size);
59 Ebml_Write(glob, wstr, (unsigned long)size);
62 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) {
74 Ebml_Serialize(glob, (void *)&class_id, sizeof(class_id), len)
    [all...]
EbmlBufferWriter.h 15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
16 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
WebMElement.h 25 void writeAudioTrack(EbmlGlobal *glob, unsigned int trackNumber, int flagLacing,
  /external/libvpx/libvpx/
webmenc.c 18 void Ebml_Write(struct EbmlGlobal *glob,
21 (void) fwrite(buffer_in, 1, len, glob->stream);
27 Ebml_Write(glob, &x, 1); \
30 void Ebml_Serialize(struct EbmlGlobal *glob,
65 static void Ebml_SerializeUnsigned32(struct EbmlGlobal *glob,
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,
78 Ebml_WriteID(glob, class_id)
    [all...]
webmenc.h 75 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/llvm/test/DebugInfo/Inputs/
dwarfdump-test-32bit.elf.c 3 extern int glob;
7 return a + glob;
12 return glob - foo(a);
  /external/chromium_org/media/webm/chromeos/
ebml_writer.cc 20 void MEDIA_EXPORT Ebml_Write(EbmlGlobal* glob,
23 glob->write_cb.Run(buffer, len);
26 void MEDIA_EXPORT Ebml_Serialize(EbmlGlobal* glob,
30 glob->serialize_cb.Run(buffer, buffer_size, len);
  /external/clang/test/Preprocessor/
macro_rparen_scan2.c 7 static int glob = (1 + FUNC(1 R_PAREN );
9 // CHECK: static int glob = (1 + 1 );
  /external/clang/test/CodeGenCXX/
debug-info-global-ctor-dtor.cpp 12 A glob; variable
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
init-order-pthread-create.cc 26 void *glob = foo((void*)0x1234); variable
30 printf("%p %p\n", glob, glob2);
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
syscalls.cc 6 #include <glob.h>
glob.cc 5 #include <glob.h>
18 int res = glob(pattern.c_str(), 0, 0, &globbuf);
  /external/compiler-rt/lib/msan/lit_tests/Linux/
glob_nomatch.cc 5 #include <glob.h>
15 int res = glob(buf, 0, 0, &globbuf);
glob.cc 6 #include <glob.h>
17 int res = glob(buf, 0, 0, &globbuf);
tcgetattr.cc 4 #include <glob.h>
  /external/chromium/chrome/common/extensions/
user_script.cc 25 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 = exclude_globs_.begin(); glob != exclude_globs_.end(); ++glob)
165 std::string glob; local
173 std::string glob; local
    [all...]
  /external/chromium/base/win/
scoped_hglobal.h 20 explicit ScopedHGlobal(HGLOBAL glob) : glob_(glob) {
  /external/chromium_org/base/win/
scoped_hglobal.h 19 explicit ScopedHGlobal(HGLOBAL glob) : glob_(glob) {
  /ndk/sources/host-tools/make-3.81/
build_w32.bat 31 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D TIVOLI /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c variable.c
33 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c rule.c
35 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c remote-stub.c
37 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c commands.c
39 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c file.c
41 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c getloadavg.c
43 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c default.c
45 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c signame.c
47 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\WinDebug/%make%.pch /Fo.\WinDebug/ /Fd.\WinDebug/%make%.pdb /c expand.c
49 cl.exe /nologo /MT /W4 /GX /Zi /YX /Od /I . /I glob /I w32/include /D _DEBUG /D WINDOWS32 /D WIN32 /D _CONSOLE /D HAVE_CONFIG_H /FR.\WinDebug/ /Fp.\Wi (…)
    [all...]
  /external/chromium_org/extensions/common/
user_script.cc 16 for (std::vector<std::string>::const_iterator glob = globs->begin();
17 glob != globs->end(); ++glob) {
18 if (MatchPattern(url.spec(), *glob))
143 for (std::vector<std::string>::const_iterator glob = globs.begin();
144 glob != globs.end(); ++glob) {
145 pickle->WriteString(*glob);
194 std::string glob; local
195 CHECK(pickle.ReadString(iter, &glob));
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_win_unittest.cc 52 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input.size() + 1)); local
54 SIZE_T sz = GlobalSize(glob);
55 base::win::ScopedHGlobal<wchar_t> global_lock(glob);
58 medium.hGlobal = glob;
89 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input.size() + 1)); local
91 SIZE_T sz = GlobalSize(glob);
92 base::win::ScopedHGlobal<wchar_t> global_lock(glob);
95 medium.hGlobal = glob;
101 HGLOBAL glob = GlobalAlloc(GPTR, sizeof(wchar_t) * (input2.size() + 1)); local
103 SIZE_T sz = GlobalSize(glob);
    [all...]
  /ndk/sources/host-tools/make-3.81/glob/
glob.h 75 /* Bits set in the FLAGS argument to `glob'. */
105 /* Error returns from `glob'. */
160 # define glob glob64 macro
172 /* Do glob searching for PATTERN, placing results in PGLOB.
177 `glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
179 Otherwise, `glob' returns zero. */
181 extern int glob __P ((__const char *__pattern, int __flags,
185 /* Free storage allocated in PGLOB by a previous `glob' call. */
188 extern int glob __P ((__const char *__pattern, int __flags,
209 #endif /* glob.h *
    [all...]

Completed in 736 milliseconds

1 2 3