Searched refs:start_code (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/media/formats/mpeg/
H A Dmpeg_audio_stream_parser_base.cc108 uint32 start_code = data[0] << 24 | data[1] << 16 | data[2] << 8 | data[3]; local
111 if ((start_code & start_code_mask_) == start_code_mask_) {
117 } else if (start_code == kICYStartCode) {
119 } else if ((start_code & kID3StartCodeMask) == kID3v1StartCode) {
121 } else if ((start_code & kID3StartCodeMask) == kID3v2StartCode) {
127 DVLOG(1) << "Unexpected start code 0x" << std::hex << start_code; local
/external/lldb/source/Plugins/Process/POSIX/
H A DRegisterContext_i386.h148 uint32_t start_code; // VM address of text. member in struct:RegisterContext_i386::UserArea
H A DRegisterContextLinux_x86_64.cpp83 uint64_t start_code; // VM address of text. member in struct:UserArea
/external/pcre/dist/
H A Dpcre_dfa_exec.c425 const pcre_uchar *start_code = md->start_code; local
523 int bstate = (int)(end_code - start_code + 2 + 2*LINK_SIZE);
561 ADD_NEW((int)(end_code - start_code + length), 0);
571 DPRINTF(("%.*sEnd state = %d\n", rlevel*2-2, SP, (int)(end_code - start_code)));
691 code = start_code + state_offset;
820 ADD_ACTIVE((int)(code - start_code), 0);
828 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE), 0);
837 ADD_ACTIVE((int)(code - start_code + 1 + LINK_SIZE + IMM2_SIZE), 0);
841 ADD_ACTIVE((int)(code - start_code
[all...]
H A Dpcre_compile.c1775 cs = ce = (pcre_uchar *)cd->start_code + GET(cc, 1); /* Start subpattern */
2376 const pcre_uchar *scode = cd->start_code + GET(code, 1);
2388 if ((int)GET(tcode, 0) == (int)(code + 1 - cd->start_code)) return TRUE;
3972 if (cd->start_code + offset == ptr + 1)
3985 if (cd->start_code + offset >= group) PUT(ptr, 1, offset + adjust);
5614 if (offset == previous + 1 - cd->start_code)
7291 called = cd->start_code;
7304 called = PRIV(find_bracket)(cd->start_code, utf, recno);
7320 called = cd->start_code + recno;
7327 PUTINC(cd->hwm, 0, (int)(code + 1 - cd->start_code));
[all...]
H A Dpcre_exec.c1142 code_offset = (int)(ecode - md->start_code);
1170 ecode = md->start_code + code_offset;
1238 code_offset = (int)(ecode - md->start_code);
1249 ecode = md->start_code + code_offset;
1755 callpat = md->start_code + GET(ecode, 1);
1756 recno = (callpat == md->start_code)? 0 :
6539 md->start_code = (const pcre_uchar *)re + re->name_table_offset +
6923 rc = match(start_match, md->start_code, start_match, 2, md, NULL, 0);
/external/chromium_org/media/base/
H A Dcontainer_names.cc409 // Advance to the first set of |num_bits| bits that match |start_code|. |offset|
411 // number of bytes that must remain in the buffer when |start_code| is found.
412 // Returns true if start_code found (and enough space in the buffer after it),
419 uint32 start_code) {
428 if (((next >> bits_to_shift) & mask) == start_code)
886 // Advance to start_code, if there is one.
898 int start_code = ReadBits(&reader, 8); local
899 RCHECK(start_code < 0x30 || start_code > 0xaf); // 30..AF and
900 RCHECK(start_code <
414 AdvanceToStartCode(const uint8* buffer, int buffer_size, int* offset, int bytes_needed, int num_bits, uint32 start_code) argument
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc616 int32_t start_code = StartCode(segment); local
617 return RetrieveGlyphId(segment, start_code, character);
621 int32_t start_code,
623 if (character < start_code) {
632 2 * (character - start_code));
672 int32_t start_code = data->ReadUShort(StartCodeOffset(seg_count) + local
674 return start_code;
620 RetrieveGlyphId(int32_t segment, int32_t start_code, int32_t character) argument
/external/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc616 int32_t start_code = StartCode(segment); local
617 return RetrieveGlyphId(segment, start_code, character);
621 int32_t start_code,
623 if (character < start_code) {
632 2 * (character - start_code));
672 int32_t start_code = data->ReadUShort(StartCodeOffset(seg_count) + local
674 return start_code;
620 RetrieveGlyphId(int32_t segment, int32_t start_code, int32_t character) argument
/external/strace/
H A Dprocess.c1964 { uoff(start_code), "offsetof(struct user, start_code)" },
1980 { uoff(start_code), "offsetof(struct user, start_code)" },
1997 { uoff(start_code), "offsetof(struct user, start_code)" },
2013 { uoff(start_code), "offsetof(struct user, start_code)" },
2026 { uoff(start_code), "offsetof(struct user, start_code)" },
[all...]
/external/chromium_org/media/filters/
H A Dh264_parser.cc268 const uint8* start_code = start + *offset; local
269 const uint8* start_code_end = start_code + *start_code_size;
271 start_code_range.Add(start_code, start_code_end + 1);
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DExprNodes.py3919 start_code = self.start_code()
3935 start_code,
3943 start_code,
3945 start_code,
3956 start_code,
3963 start_code,
3965 start_code,
3975 start_code,
4007 start_code,
4137 def start_code(self): member in class:SliceIndexNode
[all...]

Completed in 1887 milliseconds