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

1 2 3 4 5

  /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) {
21 memcpy(&(glob->buf[glob->offset]), q, 1);
22 glob->offset++;
26 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) {
32 _Serialize(glob, p, q)
    [all...]
WebMElement.c 18 void writeHeader(EbmlGlobal *glob) {
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, &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);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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) {
21 memcpy(&(glob->buf[glob->offset]), q, 1);
22 glob->offset++;
26 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) {
32 _Serialize(glob, p, q)
    [all...]
WebMElement.c 18 void writeHeader(EbmlGlobal *glob) {
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, &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);
  /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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /external/llvm/test/DebugInfo/Inputs/
dwarfdump-test-32bit.elf.c 3 extern int glob;
7 return a + glob;
12 return glob - foo(a);
  /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/compiler-rt/test/tsan/
pthread_atfork_deadlock.c 11 int glob = 0; variable
15 glob++;
21 glob++;
28 glob++;
  /external/clang/test/CodeGenCXX/
debug-info-global-ctor-dtor.cpp 12 A glob; variable
  /external/chromium_org/third_party/libvpx/source/libvpx/
webmenc.cc 23 void write_webm_file_header(struct EbmlGlobal *glob,
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,
63 reinterpret_cast<mkvmuxer::Segment*>(glob->segment);
66 if (pts_ns <= glob->last_pts_ns)
67 pts_ns = glob->last_pts_ns + 1000000
    [all...]
webmenc.h 41 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/
glob.h 27 /* 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);
glob.c 28 match_character_class(const char *glob, size_t length, size_t from)
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)
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, length, i)
    [all...]
  /external/compiler-rt/test/asan/TestCases/
init-order-pthread-create.cc 26 void *glob = foo((void*)0x1234); variable
30 printf("%p %p\n", glob, glob2);
  /external/compiler-rt/test/asan/TestCases/Linux/
syscalls.cc 9 #include <glob.h>
  /frameworks/av/include/media/stagefright/foundation/
AStringUtils.h 28 // matches a string (str) to a glob pattern that supports:
31 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase);
  /external/compiler-rt/test/msan/Linux/
glob_nomatch.cc 5 #include <glob.h>
15 int res = glob(buf, 0, 0, &globbuf);
  /frameworks/av/media/libstagefright/foundation/
AStringUtils.cpp 30 const char *glob, size_t globLen, const char *str, size_t strLen, bool ignoreCase) {
35 while (globIx < globLen && glob[globIx] != '*') {
38 if (strLen < globIx || Compare(str, glob, globIx /* len */, ignoreCase)) {
47 while (globIx < globLen && glob[globIx] != '*') {
51 const char *pattern = glob + start;

Completed in 401 milliseconds

1 2 3 4 5