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

1 2 3 4 5

  /frameworks/av/drm/common/
DrmConvertedStatus.cpp 22 int _statusCode, const DrmBuffer* _convertedData, int _offset) :
25 offset(_offset) {
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 10 _offset = offset;
25 offset += _offset;
28 *newPosition = absoluteNewPosition - _offset;
34 return _stream->SetSize(_offset + newSize);
OffsetStream.h 13 UInt64 _offset; member in class:COffsetOutStream
  /frameworks/av/include/drm/
DrmConvertedStatus.h 47 * @param[in] _offset Offset value
49 DrmConvertedStatus(int _statusCode, const DrmBuffer* _convertedData, int _offset);
  /dalvik/vm/mterp/portable/
stubdefs.cpp 37 # define FINISH(_offset) { \
38 ADJUST_PC(_offset); \
  /dalvik/vm/mterp/cstubs/
stubdefs.cpp 71 #define FINISH(_offset) { \
72 ADJUST_PC(_offset); \
79 #define FINISH(_offset) { \
80 ADJUST_PC(_offset); \
  /bionic/libc/stdio/
stdio.c 52 fp->_offset += ret;
80 fp->_offset = ret;
ftell.c 59 pos = fp->_offset;
fseek.c 84 curoff = fp->_offset;
153 curoff = fp->_offset;
  /external/chromium_org/gpu/command_buffer/common/
cmd_buffer_common.h 289 uint32 _offset,
295 offset = _offset;
302 uint32 _offset,
308 _offset,
350 uint32 _offset,
354 offset = _offset;
359 uint32 _offset,
363 _offset,
474 uint32 _offset,
480 offset = _offset;
    [all...]
  /dalvik/vm/mterp/x86/
header.S 251 .macro GET_VREG_WORD _reg _vreg _offset
252 movl 4*(\_offset)(rFP,\_vreg,4),\_reg
255 .macro SET_VREG_WORD _reg _vreg _offset
256 movl \_reg,4*(\_offset)(rFP,\_vreg,4)
  /external/chromium_org/gpu/command_buffer/client/
ring_buffer.h 73 Block(Offset _offset, unsigned int _size, State _state)
74 : offset(_offset),
  /dalvik/vm/mterp/c/
header.cpp 90 * Adjust the program counter. "_offset" is a signed int, in 16-bit units.
99 # define ADJUST_PC(_offset) do { \
100 int myoff = _offset; /* deref only once */ \
116 # define ADJUST_PC(_offset) do { \
117 pc += _offset; \
270 #define FETCH(_offset) (pc[(_offset)])
  /external/bison/lib/
stdio-impl.h 48 fpos_t _offset; \
  /libcore/libart/src/main/java/java/lang/
String.java 1064 int _offset = offset; local
1084 int _offset = offset; local
1278 int _offset = offset; local
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
String.java 1099 int _offset = offset; local
1119 int _offset = offset; local
1313 int _offset = offset; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_s.h 466 LCLA _Offset
467 _Offset SETA _Workspace + $a0$_F
468 ASSERT (_Offset:AND:($a-1))=0
469 $i$a1 $r, [sp, #_Offset]
478 LCLS _offset
481 _offset SETS "$a1"
482 IF _offset:LEFT:1="+"
483 _offset SETS _offset:RIGHT:(:LEN:_offset-1
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_s.h 469 LCLA _Offset
470 _Offset SETA _Workspace + $a0$_F
471 ASSERT (_Offset:AND:($a-1))=0
472 $i$a1 $r, [sp, #_Offset]
481 LCLS _offset
484 _offset SETS "$a1"
485 IF _offset:LEFT:1="+"
486 _offset SETS _offset:RIGHT:(:LEN:_offset-1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 536 self._offset = 0
563 i = self._readbuffer.find('\n', self._offset) + 1
565 line = self._readbuffer[self._offset: i]
566 self._offset = i
593 self._offset += len(newline)
600 self._offset += len(chunk)
607 if n > len(self._readbuffer) - self._offset:
609 self._offset -= len(chunk)
612 return self._readbuffer[self._offset: self._offset + 512
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 536 self._offset = 0
563 i = self._readbuffer.find('\n', self._offset) + 1
565 line = self._readbuffer[self._offset: i]
566 self._offset = i
593 self._offset += len(newline)
600 self._offset += len(chunk)
607 if n > len(self._readbuffer) - self._offset:
609 self._offset -= len(chunk)
612 return self._readbuffer[self._offset: self._offset + 512
    [all...]
  /dalvik/vm/mterp/common/
asm-constants.h 13 # define MTERP_OFFSET(_name, _type, _field, _offset) \
14 if (OFFSETOF_MEMBER(_type, _field) != _offset) { \
16 #_name, _offset, OFFSETOF_MEMBER(_type, _field)); \
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 25 private final int _offset; field in class:DNSOutgoing.MessageOutputStream
42 _offset = offset;
136 _out._names.put(aName, Integer.valueOf(this.size() + _offset));
161 MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2);
  /dalvik/vm/mterp/out/
InterpC-armv5te-vfp.cpp 97 * Adjust the program counter. "_offset" is a signed int, in 16-bit units.
106 # define ADJUST_PC(_offset) do { \
107 int myoff = _offset; /* deref only once */ \
123 # define ADJUST_PC(_offset) do { \
124 pc += _offset; \
277 #define FETCH(_offset) (pc[(_offset)])
449 #define FINISH(_offset) { \
450 ADJUST_PC(_offset); \
457 #define FINISH(_offset) { \
    [all...]
InterpC-armv5te.cpp 97 * Adjust the program counter. "_offset" is a signed int, in 16-bit units.
106 # define ADJUST_PC(_offset) do { \
107 int myoff = _offset; /* deref only once */ \
123 # define ADJUST_PC(_offset) do { \
124 pc += _offset; \
277 #define FETCH(_offset) (pc[(_offset)])
449 #define FINISH(_offset) { \
450 ADJUST_PC(_offset); \
457 #define FINISH(_offset) { \
    [all...]
InterpC-armv7-a-neon.cpp 97 * Adjust the program counter. "_offset" is a signed int, in 16-bit units.
106 # define ADJUST_PC(_offset) do { \
107 int myoff = _offset; /* deref only once */ \
123 # define ADJUST_PC(_offset) do { \
124 pc += _offset; \
277 #define FETCH(_offset) (pc[(_offset)])
449 #define FINISH(_offset) { \
450 ADJUST_PC(_offset); \
457 #define FINISH(_offset) { \
    [all...]

Completed in 1064 milliseconds

1 2 3 4 5