/external/e2fsprogs/lib/blkid/ |
D | 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/ |
D | 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/include/ |
D | CMakeLists.txt | 82 check_type_size("int" SIZEOF_INT) 86 if("${SIZEOF_INT}" STREQUAL "4") 98 else("${SIZEOF_INT}" STREQUAL "4") 100 endif("${SIZEOF_INT}" STREQUAL "4") 114 check_type_size("int" SIZEOF_INT) 118 if("${SIZEOF_INT}" STREQUAL "8") 130 else("${SIZEOF_INT}" STREQUAL "8") 133 endif("${SIZEOF_INT}" STREQUAL "8")
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | Table.java | 107 src.position(offset + SIZEOF_INT); in __string() 108 src.limit(offset + SIZEOF_INT + length); in __string() 151 return offset + bb.getInt(offset) + SIZEOF_INT; // data starts after the length in __vector() 202 if (ident.charAt(i) != (char)bb.get(bb.position() + SIZEOF_INT + i)) return false; in __has_identifier() 245 int startPos_1 = offset_1 + SIZEOF_INT; in compareStrings() 246 int startPos_2 = offset_2 + SIZEOF_INT; in compareStrings() 267 int startPos_1 = offset_1 + Constants.SIZEOF_INT; in compareStrings()
|
D | FlatBufferBuilder.java | 215 public void putInt (int x) { bb.putInt (space -= Constants.SIZEOF_INT, x); } in putInt() 268 public void addInt (int x) { prep(Constants.SIZEOF_INT, 0); putInt (x); } in addInt() 297 prep(SIZEOF_INT, 0); // Ensure alignment is already done. in addOffset() 299 off = offset() - off + SIZEOF_INT; in addOffset() 349 prep(SIZEOF_INT, elem_size * num_elems); in startVector() 400 startVector(Constants.SIZEOF_INT, offsets.length, Constants.SIZEOF_INT); in createVectorOfTables() 752 prep(minalign, SIZEOF_INT); in finish() 766 prep(minalign, SIZEOF_INT + FILE_IDENTIFIER_LENGTH); in finish()
|
D | Constants.java | 31 static final int SIZEOF_INT = 4; field in Constants
|
/external/c-ares/ |
D | ares_nowarn.c | 46 #if (SIZEOF_INT == 2) 49 #elif (SIZEOF_INT == 4) 52 #elif (SIZEOF_INT == 8) 55 #elif (SIZEOF_INT == 16)
|
D | config-dos.h | 35 #define SIZEOF_INT 4 macro
|
/external/e2fsprogs/lib/uuid/ |
D | uuid_types.h.in | 12 #if (@SIZEOF_INT@ == 8) 27 #if (@SIZEOF_INT@ == 2) 37 #if (@SIZEOF_INT@ == 4)
|
/external/flatbuffers/php/ |
D | Table.php | 66 $startPos = $offset + Constants::SIZEOF_INT; 89 return $offset + $this->bb->getInt($offset) + Constants::SIZEOF_INT; 128 if ($ident[$i] != $bb->get($bb->getPosition() + Constants::SIZEOF_INT + $i)) {
|
D | FlatbufferBuilder.php | 561 $this->prep(Constants::SIZEOF_INT, 0); // Ensure alignment is already done 566 $off = $this->offset() - $off + Constants::SIZEOF_INT; 581 $this->prep(Constants::SIZEOF_INT, $elem_size * $num_elems); 898 $this->prep($this->minalign, Constants::SIZEOF_INT); 902 $this->prep($this->minalign, Constants::SIZEOF_INT + Constants::FILE_IDENTIFIER_LENGTH);
|
D | Constants.php | 23 const SIZEOF_INT = 4; define in Google\\FlatBuffers\\Constants
|
/external/libdivsufsort/CMakeModules/ |
D | 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/flatbuffers/js/ |
D | flatbuffers.js | 43 flatbuffers.SIZEOF_INT = 4; 569 this.prep(flatbuffers.SIZEOF_INT, 0); // Ensure alignment is already done. 570 this.writeInt32(this.offset() - offset + flatbuffers.SIZEOF_INT); 665 this.prep(this.minalign, flatbuffers.SIZEOF_INT + 675 this.prep(this.minalign, flatbuffers.SIZEOF_INT); 711 this.prep(flatbuffers.SIZEOF_INT, elem_size * num_elems); 1047 offset += flatbuffers.SIZEOF_INT; 1114 return offset + this.readInt32(offset) + flatbuffers.SIZEOF_INT; // data starts after the length 1137 if (ident.charCodeAt(i) != this.readInt8(this.position_ + flatbuffers.SIZEOF_INT + i)) {
|
/external/e2fsprogs/util/ |
D | subst.conf.in | 8 SIZEOF_INT @SIZEOF_INT@
|
/external/curl/lib/ |
D | warnless.c | 184 #if (SIZEOF_INT < SIZEOF_SIZE_T) in curlx_uztoui() 206 #if (SIZEOF_INT < CURL_SIZEOF_LONG) in curlx_sltosi() 228 #if (SIZEOF_INT < CURL_SIZEOF_LONG) in curlx_sltoui() 308 #if (SIZEOF_INT < SIZEOF_SIZE_T) in curlx_sztosi()
|
D | config-mac.h | 86 #define SIZEOF_INT 4 macro
|
D | config-amigaos.h | 90 #define SIZEOF_INT 4 macro
|
/external/python/cpython2/PC/ |
D | pyconfig.h | 387 #define SIZEOF_INT 4 macro 412 #if SIZEOF_INT == 4 429 #if SIZEOF_INT == 4
|
/external/python/cpython2/Include/ |
D | modsupport.h | 99 #if SIZEOF_SIZE_T != SIZEOF_INT 109 #if SIZEOF_SIZE_T != SIZEOF_INT
|
/external/liblzf/ |
D | config.h.in | 10 #undef SIZEOF_INT
|
/external/python/cpython2/PC/os2vacpp/ |
D | pyconfig.h | 76 #define SIZEOF_INT 4 /* Count of Bytes in an (int) */ macro
|
/external/pdfium/third_party/libtiff/ |
D | tiffconf.h | 50 #define SIZEOF_INT 4 macro
|
/external/python/cpython2/Modules/ |
D | sre.h | 27 # if SIZEOF_SIZE_T > SIZEOF_INT
|
D | socketmodule.h | 93 # define SIZEOF_SOCKET_T SIZEOF_INT
|