OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:start_code
(Results
1 - 13
of
13
) sorted by null
/development/ndk/platforms/android-9/arch-mips/include/asm/
user.h
32
unsigned long
start_code
;
member in struct:user
45
#define HOST_TEXT_START_ADDR (u.
start_code
)
/bionic/libc/include/sys/
user.h
90
unsigned long
start_code
;
member in struct:user
153
unsigned long
start_code
;
174
unsigned long
start_code
;
218
unsigned long
start_code
;
/development/ndk/platforms/android-3/arch-arm/include/asm/
user.h
43
unsigned long
start_code
;
member in struct:user
58
#define HOST_TEXT_START_ADDR (u.
start_code
)
/development/ndk/platforms/android-9/arch-x86/include/asm/
user32.h
72
__u32
start_code
;
member in struct:user32
user_32.h
74
unsigned long
start_code
;
member in struct:user
89
#define HOST_TEXT_START_ADDR (u.
start_code
)
/development/ndk/platforms/android-L/include/sys/
user.h
90
unsigned long
start_code
;
member in struct:user
153
unsigned long
start_code
;
178
unsigned long
start_code
;
222
unsigned long
start_code
;
/external/chromium_org/media/formats/mpeg/
mpeg_audio_stream_parser_base.cc
108
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/
RegisterContextLinux_x86_64.cpp
83
uint64_t
start_code
; // VM address of text.
member in struct:UserArea
RegisterContext_i386.h
148
uint32_t
start_code
; // VM address of text.
member in struct:RegisterContext_i386::UserArea
/external/chromium_org/media/filters/
h264_parser.cc
268
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);
[
all
...]
/external/chromium_org/media/base/
container_names.cc
409
// 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
< 0xb7 || start_code > 0xb9); // B7..B9 reserve
[
all
...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc
616
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
;
[
all
...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
ExprNodes.py
4137
def
start_code
(self):
member in class:SliceIndexNode
[
all
...]
Completed in 353 milliseconds