/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/ |
omxtypes_s.h | 34 OMX_StsICJP_JPEGMarkerErr EQU -183 ;// JPEG marker encountered within an entropy-coded block; 36 OMX_StsICJP_JPEGMarker EQU -181 ;// JPEG marker encountered; Huffman decoding
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/ |
omxtypes_s.h | 34 OMX_StsICJP_JPEGMarkerErr EQU -183 ;// JPEG marker encountered within an entropy-coded block; 36 OMX_StsICJP_JPEGMarker EQU -181 ;// JPEG marker encountered; Huffman decoding
|
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/ |
JPEGTest.h | 59 #define M_JFIF 0xE0 /* Jfif marker*/ 60 #define M_EXIF 0xE1 /* Exif marker*/
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/ |
test_recursion.py | 29 # ensure that the marker is cleared 43 # ensure that the marker is cleared
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/ |
test_recursion.py | 29 # ensure that the marker is cleared 43 # ensure that the marker is cleared
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
DocumentFix.java | 32 protected DocumentFix(String id, IMarker marker) { 33 super(id, marker);
|
LinearLayoutWeightFix.java | 36 private LinearLayoutWeightFix(String id, IMarker marker) { 37 super(id, marker);
|
ObsoleteLayoutParamsFix.java | 32 private ObsoleteLayoutParamsFix(String id, IMarker marker) { 33 super(id, marker);
|
SetScrollViewSizeFix.java | 35 private SetScrollViewSizeFix(String id, IMarker marker) { 36 super(id, marker);
|
/external/pdfium/core/include/thirdparties/libjpeg/ |
jpeglib.h | 152 * (not the zigzag order in which they are stored in a JPEG DQT marker).
168 /* These two fields directly represent the contents of a JPEG DHT marker */
186 /* for decompression, they are read from the SOF marker. */
194 /* for decompression, they are read from the SOS marker. */
264 UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */
member in struct:jpeg_marker_struct 267 JOCTET * data; /* the data contained in the marker */
268 /* the marker length word is not counted in data_length or original_length */
404 boolean write_JFIF_header; /* should a JFIF marker be written? */
408 /* into the JFIF APP0 marker. density_unit can be 0 for unknown, */ 466 struct jpeg_marker_writer * marker; member in struct:jpeg_compress_struct 691 struct jpeg_marker_reader * marker; member in struct:jpeg_decompress_struct [all...] |
/external/pdfium/core/src/fxcodec/libjpeg/ |
jpeglib.h | 152 * (not the zigzag order in which they are stored in a JPEG DQT marker).
168 /* These two fields directly represent the contents of a JPEG DHT marker */
186 /* for decompression, they are read from the SOF marker. */
194 /* for decompression, they are read from the SOS marker. */
264 UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */
member in struct:jpeg_marker_struct 267 JOCTET * data; /* the data contained in the marker */
268 /* the marker length word is not counted in data_length or original_length */
404 boolean write_JFIF_header; /* should a JFIF marker be written? */
408 /* into the JFIF APP0 marker. density_unit can be 0 for unknown, */ 466 struct jpeg_marker_writer * marker; member in struct:jpeg_compress_struct 691 struct jpeg_marker_reader * marker; member in struct:jpeg_decompress_struct [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/ |
vp9_dx_iface.c | 300 uint8_t marker; local 301 decrypt_cb(decrypt_state, data, &marker, 1); 302 return marker; 311 uint8_t marker; local 314 marker = read_marker(decrypt_cb, decrypt_state, data + data_sz - 1); 317 if ((marker & 0xe0) == 0xc0) { 318 const uint32_t frames = (marker & 0x7) + 1; 319 const uint32_t mag = ((marker >> 3) & 0x3) + 1; 325 if (data_sz >= index_sz && marker2 == marker) { 363 const uint8_t marker = read_marker(ctx->decrypt_cb, ctx->decrypt_state local [all...] |
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
streams.py | 77 current input position, index(), or some other marker so that 97 def rewind(self, marker=None): 99 Reset the stream so that next call to index would return marker. 100 The marker will usually be index() but it doesn't have to be. It's 101 just a marker to indicate what state the stream was in. This is 103 created after this marker argument, this routine must unroll them 104 like a stack. Assume the state the stream was in when this marker 107 If marker is None: 108 Rewind to the input position of the last marker. 112 Do not "pop" the marker off the state. mark(i [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
streams.rb | 122 <tt>marker = stream.mark</tt> causes the stream to record important information 124 return a memento, <tt>marker</tt>. The marker object is typically an integer key 127 Used in tandem with, <tt>stream.rewind(mark = last_marker)</tt>, the marker can 131 <tt>stream.release(marker = last_marker)</tt> can be used to release an existing 132 state marker from the memory table. 200 # :method: rewind( marker = last_marker ) 202 # by the given marker 206 # :method: release( marker = last_marker ) 207 # clears the saved state information associated with the given marker valu [all...] |
/art/runtime/ |
read_barrier_c.h | 38 // A placeholder marker to indicate places to add read barriers in the
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeNodeStream.cs | 144 public virtual void Rewind(int marker) { 145 dbg.Rewind(marker); 146 input.Rewind(marker); 154 public virtual void Release(int marker) {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/ |
LookaheadStream.cs | 165 public virtual void Release(int marker) { 169 public virtual void Rewind(int marker) { 170 Seek(marker); 171 Release(marker);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
LookaheadStream.cs | 194 public virtual void Release( int marker ) 202 public virtual void Rewind( int marker ) 204 Seek( marker ); 205 Release( marker );
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeNodeStream.cs | 167 public virtual void Rewind( int marker ) 169 dbg.Rewind( marker ); 170 input.Rewind( marker ); 179 public virtual void Release( int marker )
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugTreeNodeStream.java | 102 public void rewind(int marker) { 103 dbg.rewind(marker); 104 input.rewind(marker); 112 public void release(int marker) {
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRDebugTokenStream.m | 126 - (void) rewind:(NSInteger)marker 128 [debugListener rewind:marker]; 129 [input rewind:marker]; 158 - (void) release:(NSInteger) marker
|
ANTLRLookaheadStream.m | 166 -(void) release:(NSInteger) marker 171 -(void) rewind:(NSInteger) marker 174 [self seek:marker]; 175 // if (marker == 0) [self reset];
|
/external/chromium_org/gpu/command_buffer/service/ |
logger.h | 43 // Uses the current marker to add information to logs.
|
/external/chromium_org/media/cast/rtp_receiver/rtp_parser/ |
rtp_parser_unittest.cc | 34 cast_header_.marker = true; 46 EXPECT_EQ(cast_header_.marker, parsed_header.marker); 94 cast_header_.marker = false;
|
/external/chromium_org/media/cast/transport/rtp_sender/rtp_packetizer/test/ |
rtp_header_parser.h | 30 bool marker; member in struct:media::cast::transport::RtpCastTestHeader
|