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

1 2 3 4 5 6 7

  /external/flatbuffers/php/
Constants.php 23 const SIZEOF_INT = 4;
Table.php 76 $startPos = $offset + Constants::SIZEOF_INT;
99 return $offset + $this->bb->getInt($offset) + Constants::SIZEOF_INT;
138 if ($ident[$i] != $bb->get($bb->getPosition() + Constants::SIZEOF_INT + $i)) {
  /external/flatbuffers/java/com/google/flatbuffers/
Constants.java 31 static final int SIZEOF_INT = 4;
Table.java 107 src.position(offset + SIZEOF_INT);
108 src.limit(offset + SIZEOF_INT + length);
151 return offset + bb.getInt(offset) + SIZEOF_INT; // data starts after the length
202 if (ident.charAt(i) != (char)bb.get(bb.position() + SIZEOF_INT + i)) return false;
245 int startPos_1 = offset_1 + SIZEOF_INT;
246 int startPos_2 = offset_2 + SIZEOF_INT;
266 int startPos_1 = offset_1 + Constants.SIZEOF_INT;
FlatBufferBuilder.java 228 * the int length field is aligned to {@link com.google.flatbuffers.Constants#SIZEOF_INT}, and
280 public void putInt (int x) { bb.putInt (space -= Constants.SIZEOF_INT, x); }
333 public void addInt (int x) { prep(Constants.SIZEOF_INT, 0); putInt (x); }
362 prep(SIZEOF_INT, 0); // Ensure alignment is already done.
364 off = offset() - off + SIZEOF_INT;
414 prep(SIZEOF_INT, elem_size * num_elems);
465 startVector(Constants.SIZEOF_INT, offsets.length, Constants.SIZEOF_INT);
821 prep(minalign, SIZEOF_INT);
835 prep(minalign, SIZEOF_INT + FILE_IDENTIFIER_LENGTH)
    [all...]
  /external/e2fsprogs/lib/uuid/
uuid_types.h.in 12 #if (@SIZEOF_INT@ == 8)
27 #if (@SIZEOF_INT@ == 2)
37 #if (@SIZEOF_INT@ == 4)
  /toolchain/binutils/binutils-2.27/include/
fibheap.h 66 #if defined (__GNUC__) && (!defined (SIZEOF_INT) || SIZEOF_INT < 4)
  /external/e2fsprogs/lib/blkid/
blkid_types.h.in 35 #if (@SIZEOF_INT@ == 2)
44 #endif /* SIZEOF_INT == 2 */
53 #if (@SIZEOF_INT@ == 2)
62 #endif /* SIZEOF_INT == 2 */
71 #if (@SIZEOF_INT@ == 4)
84 #endif /* SIZEOF_INT == 4 */
93 #if (@SIZEOF_INT@ == 4)
106 #endif /* SIZEOF_INT == 4 */
115 #if (@SIZEOF_INT@ == 8)
128 #endif /* SIZEOF_INT == 8 *
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ext2_types.h.in 35 #if (@SIZEOF_INT@ == 2)
44 #endif /* SIZEOF_INT == 2 */
53 #if (@SIZEOF_INT@ == 2)
62 #endif /* SIZEOF_INT == 2 */
71 #if (@SIZEOF_INT@ == 4)
84 #endif /* SIZEOF_INT == 4 */
93 #if (@SIZEOF_INT@ == 4)
106 #endif /* SIZEOF_INT == 4 */
115 #if (@SIZEOF_INT@ == 8)
128 #endif /* SIZEOF_INT == 8 *
    [all...]
  /external/libdivsufsort/CMakeModules/
CheckLFS.cmake 39 check_type_size("int" SIZEOF_INT)
42 elseif(SIZEOF_LONG GREATER SIZEOF_INT)
68 check_type_size("int" SIZEOF_INT)
71 elseif(SIZEOF_LONG GREATER SIZEOF_INT)
  /external/libogg/
config.h.in 59 #undef SIZEOF_INT
  /external/curl/lib/
warnless.c 56 #if (SIZEOF_INT == 2)
59 #elif (SIZEOF_INT == 4)
62 #elif (SIZEOF_INT == 8)
65 #elif (SIZEOF_INT == 16)
69 # error "SIZEOF_INT not defined"
107 #elif (SIZEOF_SIZE_T == SIZEOF_INT)
250 #if (SIZEOF_INT < SIZEOF_SIZE_T)
272 #if (SIZEOF_INT < SIZEOF_LONG)
294 #if (SIZEOF_INT < SIZEOF_LONG)
374 #if (SIZEOF_INT < SIZEOF_SIZE_T
    [all...]
config-amigaos.h 90 #define SIZEOF_INT 4
config-mac.h 86 #define SIZEOF_INT 4
config-win32ce.h 335 #define SIZEOF_INT 4
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
modsupport.h 99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
modsupport.h 99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
  /external/python/cpython2/Include/
modsupport.h 99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
  /prebuilts/gdb/darwin-x86/include/python2.7/
modsupport.h 99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
  /prebuilts/gdb/linux-x86/include/python2.7/
modsupport.h 99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
modsupport.h 99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
modsupport.h 99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
  /external/python/cpython2/PC/
pyconfig.h 387 #define SIZEOF_INT 4
412 #if SIZEOF_INT == 4
429 #if SIZEOF_INT == 4
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
sre.h 27 # if SIZEOF_SIZE_T > SIZEOF_INT
  /external/pdfium/third_party/libtiff/
tiffconf.h 40 #define SIZEOF_INT 4

Completed in 462 milliseconds

1 2 3 4 5 6 7