/external/lzma/CPP/7zip/Common/ |
FileStreams.h | 156 UInt64 _size;
member in class:CStdOutFileStream 160 UInt64 GetSize() const { return _size; }
161 CStdOutFileStream(): _size(0) {}
|
/external/opencv/ |
WLNonFileByteStream.cpp | 22 _size = 0;
58 _size = data_size;
148 return _size;
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DownloadEntry.java | 29 public static final String CONTENT_SIZE = "_size"; 42 @Column("_size") 65 .append("_size").append(contentSize).append(", ")
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
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; __sflush() 73 if (n >= fp->_bf._size) { 80 if (++n == fp->_bf._size || (fp->_flags & __SLBF && c == '\n'))
|
ungetc.c | 59 _UB(fp)._size = BUFSIZ; 66 i = _UB(fp)._size; 74 _UB(fp)._size = i * 2; 112 if (fp->_r >= _UB(fp)._size && __submore(fp)) 139 _UB(fp)._size = sizeof(fp->_ubuf);
|
makebuf.c | 58 fp->_bf._size = 1; 65 fp->_bf._size = 1; 70 fp->_bf._size = size;
|
/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;}
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zFolderInStream.h | 26 UInt64 _size;
member in class:NArchive::N7z::CFolderInStream
|
7zOut.h | 20 size_t _size;
member in class:NArchive::N7z::CWriteBufferLoc 23 CWriteBufferLoc(): _size(0), _pos(0) {}
27 _size = size;
34 if (size > _size - _pos)
41 if (_size == _pos)
|
/frameworks/support/room/compiler/src/test/data/databasewriter/output/ |
ComplexDatabase.java | 46 for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) { 57 for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) {
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
param.h | 153 #define STACK_GROW(sp, _size) (((caddr_t)(sp)) + (_size))
154 #define STACK_SHRINK(sp, _size) (((caddr_t)(sp)) - (_size))
157 #define STACK_ALLOC(sp, _size) ((caddr_t)(sp))
158 #define STACK_MAX(p, _size) (((caddr_t)(p)) + (_size))
160 #define STACK_GROW(sp, _size) (((caddr_t)(sp)) - (_size))
161 #define STACK_SHRINK(sp, _size) (((caddr_t)(sp)) + (_size)) [all...] |
/device/linaro/bootloader/arm-trusted-firmware/include/common/aarch32/ |
asm_macros.S | 66 .macro get_my_mp_stack _name, _size 68 ldr r2, =(\_name + \_size) 69 mov r1, #\_size 78 .macro get_up_stack _name, _size 79 ldr r0, =(\_name + \_size)
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
ungetc.c | 82 _UB(fp)._size = BUFSIZ;
89 i = _UB(fp)._size;
97 _UB(fp)._size = i << 1;
143 if (fp->_r >= _UB(fp)._size && __submore(fp)) {
174 _UB(fp)._size = sizeof(fp->_ubuf);
|
/external/ImageMagick/Magick++/lib/ |
Pixels.cpp | 142 return(_size); 154 _size=0; 190 _size=_length*size; 191 _data=AcquireMagickMemory(_size); 206 _size=0;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
crtdbg.h | 208 void *__cdecl operator new[](size_t _Size); 209 inline void *__cdecl operator new(size_t _Size,int,const char *,int) { return ::operator new(_Size); } 210 inline void *__cdecl operator new[](size_t _Size,int,const char *,int) { return ::operator new[](_Size); }
|
wspiapi.h | 17 #define _WSPIAPI_STRCPY_S(_Dst,_Size,_Src) strcpy((_Dst),(_Src)) 18 #define _WSPIAPI_STRCAT_S(_Dst,_Size,_Src) strcat((_Dst),(_Src)) 19 #define _WSPIAPI_STRNCPY_S(_Dst,_Size,_Src,_Count) strncpy((_Dst),(_Src),(_Count)); (_Dst)[(_Size) - 1] = 0 20 #define _WSPIAPI_SPRINTF_S_1(_Dst,_Size,_Format,_Arg1) sprintf((_Dst),(_Format),(_Arg1))
|
/device/linaro/bootloader/arm-trusted-firmware/include/common/ |
asm_macros_common.S | 94 .macro declare_stack _name, _section, _size, _count, _align=DEFAULT_STACK_ALIGN 99 .if ((\_size & ((1 << TZ_COUNT) - 1)) <> 0) 105 .space ((\_count) * (\_size)), 0
|
/external/iputils/ninfod/ |
ninfod.h | 104 size_t _size = (size); \ 105 void *p = malloc(_size); \ 106 DEBUG(LOG_DEBUG, "%s(): malloc(%zu) = %p\n", __func__, _size, p); \
|
/external/libnl/python/netlink/ |
util.py | 166 self._size = size 169 return capi.nl_size2str(self._size, 32)[0] 172 return self._size
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
EOLConvertingInputStream.java | 72 * @param _size the size of the input stream (need not be exact) 75 public EOLConvertingInputStream(InputStream _in, int _size, Callback _callback) { 77 size = _size;
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/lld/Core/ |
Node.h | 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {} 47 int getSize() const { return _size; } 54 int _size; member in class:lld::GroupEnd
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/lld/Core/ |
Node.h | 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {} 47 int getSize() const { return _size; } 54 int _size; member in class:lld::GroupEnd
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/lld/Core/ |
Node.h | 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {} 47 int getSize() const { return _size; } 54 int _size; member in class:lld::GroupEnd
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/lld/Core/ |
Node.h | 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {} 47 int getSize() const { return _size; } 54 int _size; member in class:lld::GroupEnd
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/lld/Core/ |
Node.h | 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {} 47 int getSize() const { return _size; } 54 int _size; member in class:lld::GroupEnd
|