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

1 2 3 4 5 6

  /cts/tools/dasm/src/java_cup/
parse_reduce_row.java 18 if (_size <= 0 ) _size = non_terminal.number();
29 protected static int _size = 0; field in class:parse_reduce_row
32 public static int size() {return _size;}
parse_action_row.java 19 if (_size <= 0 ) _size = terminal.number();
25 for (int i=0; i<_size; i++)
34 protected static int _size = 0; field in class:parse_action_row
37 public static int size() {return _size;}
  /system/core/adb/
utils.h 65 #define BUFF_DECL(_buff,_cursor,_end,_size) \
66 char _buff[_size], *_cursor=_buff, *_end = _cursor + (_size)
  /external/opencore/fileformats/mp4/parser/src/
copyrightatom.cpp 37 if (count <= _size)
39 uint32 delta = (_size - count);
61 if (count < _size)
63 AtomUtils::seekFromCurrPos(fp, (_size - count));
64 count = _size;
67 else if (count > _size)
atom.cpp 52 if (AtomUtils::read32read32(fp, _size, _type))
54 if (((int32)_size >= DEFAULT_ATOM_SIZE) &&
55 ((int32)(currfilePointer + _size) <= fp->_fileSize))
74 _size = size;
77 int32 temp = (int32)(_size - DEFAULT_ATOM_SIZE);
92 if (!AtomUtils::read32read32(buf, _size, _type))
97 int32 size = (int32)_size;
mfraoffsetatom.cpp 28 _size = 0;
36 if (!AtomUtils::read32(fp, _size))
mediabuffer.cpp 67 _size = size;
  /external/opencore/fileformats/mp4/composer/src/
assetinfoatoms.cpp 174 _size = getDefaultSize();
175 _size += sizeof(_langCode);
176 _size += sizeof(_byteOrderMask);
177 _size += 2 * (_title.get_size() + 1);
220 _size = getDefaultSize();
222 _size += sizeof(_langCode);
223 _size += sizeof(_byteOrderMask);
224 _size += 2 * (_description.get_size() + 1);
267 _size = getDefaultSize();
268 _size += sizeof(_langCode)
    [all...]
editatom.cpp 27 _size = getDefaultSize();
75 _size = getDefaultSize();
76 _size += _peditList->getSize();
filetypeatom.cpp 37 _size = getDefaultSize() + 8;
92 _size = getDefaultSize() + 8;
96 _size += 4;
mpeg4bitrateatom.cpp 43 _size = 0x14;
55 return (_size);
mpeg4mediaheaderatom.cpp 60 _size = getDefaultSize();
dataentryurlatom.cpp 80 _size = size;
soundmediaheaderatom.cpp 81 _size = size;
  /dalvik/vm/
AllocTracker.h 42 #define dvmTrackAllocation(_clazz, _size) \
45 dvmDoTrackAllocation(_clazz, _size); \
  /external/opencore/fileformats/mp4/parser/include/
mfraoffsetatom.h 50 return _size;
53 uint32 _size; member in class:MfraOffsetAtom
mediabuffer.h 66 _size = size;
72 return _size;
91 uint32 _size; member in class:MediaBuffer
atom.h 85 return _size;
94 uint32 _size; // 4 (32bits) member in class:Atom
  /bionic/libc/stdio/
fvwrite.c 99 * one _bf._size byte chunk directly (without copying).
113 int _size; local
116 _size = fp->_bf._size;
118 _size = (_size << 1) + 1;
119 } while (_size < (int)(blen + len));
120 _base = realloc(fp->_bf._base, _size + 1);
123 fp->_w += _size - fp->_bf._size;
    [all...]
wbuf.c 51 * make sure _w is 0 (if fully- or un-buffered) or -_bf._size
68 * happen on unbuffered streams, where _bf._size==1; fflush()
73 if (n >= fp->_bf._size) {
80 if (++n == fp->_bf._size || (fp->_flags & __SLBF && c == '\n'))
wsetup.c 82 fp->_lbfsize = -fp->_bf._size;
84 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
fileext.h 46 _UB(fp)._size = 0; \
fpurge.c 56 fp->_w = fp->_flags & (__SLBF|__SNBF) ? 0 : fp->_bf._size;
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
env_tst.c 67 #define CHECK_STRUCT_SIZE(_type,_size) \
69 if (sizeof(_type) != _size) \
72 #_type, (int)sizeof(_type),(int)_size); \
  /external/opencore/fileformats/mp4/composer/include/
atom.h 55 return _size;
71 // Overriden by all derived classes. Called when change to atom that affects its _size takes place
82 uint32 _size; // 4 (32bits) member in class:PVA_FF_Atom

Completed in 156 milliseconds

1 2 3 4 5 6