Home
last modified time | relevance | path

Searched refs:SIZEOF_INT (Results 1 – 25 of 114) sorted by relevance

12345

/external/libjpeg-turbo/simd/i386/
Djcphuff-sse2.asm33 mov T0, INT [LUT + 0*SIZEOF_INT]
34 mov T1, INT [LUT + 8*SIZEOF_INT]
38 mov T0, INT [LUT + 1*SIZEOF_INT]
39 mov T1, INT [LUT + 9*SIZEOF_INT]
43 mov T0, INT [LUT + 2*SIZEOF_INT]
44 mov T1, INT [LUT + 10*SIZEOF_INT]
48 mov T0, INT [LUT + 3*SIZEOF_INT]
49 mov T1, INT [LUT + 11*SIZEOF_INT]
53 mov T0, INT [LUT + 4*SIZEOF_INT]
54 mov T1, INT [LUT + 12*SIZEOF_INT]
[all …]
/external/libjpeg-turbo/simd/x86_64/
Djcphuff-sse2.asm34 mov T0d, INT [LUT + 0*SIZEOF_INT]
35 mov T1d, INT [LUT + 8*SIZEOF_INT]
39 mov T0d, INT [LUT + 1*SIZEOF_INT]
40 mov T1d, INT [LUT + 9*SIZEOF_INT]
44 mov T0d, INT [LUT + 2*SIZEOF_INT]
45 mov T1d, INT [LUT + 10*SIZEOF_INT]
49 mov T0d, INT [LUT + 3*SIZEOF_INT]
50 mov T1d, INT [LUT + 11*SIZEOF_INT]
54 mov T0d, INT [LUT + 4*SIZEOF_INT]
55 mov T1d, INT [LUT + 12*SIZEOF_INT]
[all …]
/external/e2fsprogs/lib/blkid/
Dblkid_types.h.in35 #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/
Dext2_types.h.in35 #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/curl/lib/
Dwarnless.c56 #if (SIZEOF_INT == 2)
59 #elif (SIZEOF_INT == 4)
62 #elif (SIZEOF_INT == 8)
65 #elif (SIZEOF_INT == 16)
107 #elif (SIZEOF_SIZE_T == SIZEOF_INT)
250 #if (SIZEOF_INT < SIZEOF_SIZE_T) in curlx_uztoui()
272 #if (SIZEOF_INT < SIZEOF_LONG) in curlx_sltosi()
294 #if (SIZEOF_INT < SIZEOF_LONG) in curlx_sltoui()
374 #if (SIZEOF_INT < SIZEOF_SIZE_T) in curlx_sztosi()
/external/libdivsufsort/include/
DCMakeLists.txt82 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/
DTable.java113 return utf8.decodeUtf8(bb, offset + SIZEOF_INT, length); in __string()
136 return offset + bb.getInt(offset) + SIZEOF_INT; // data starts after the length in __vector()
218 if (ident.charAt(i) != (char)bb.get(bb.position() + SIZEOF_INT + i)) return false; in __has_identifier()
261 int startPos_1 = offset_1 + SIZEOF_INT; in compareStrings()
262 int startPos_2 = offset_2 + SIZEOF_INT; in compareStrings()
282 int startPos_1 = offset_1 + Constants.SIZEOF_INT; in compareStrings()
DFlatBufferBuilder.java328 public void putInt (int x) { bb.putInt (space -= Constants.SIZEOF_INT, x); } in putInt()
381 public void addInt (int x) { prep(Constants.SIZEOF_INT, 0); putInt (x); } in addInt()
410 prep(SIZEOF_INT, 0); // Ensure alignment is already done. in addOffset()
412 off = offset() - off + SIZEOF_INT; in addOffset()
462 prep(SIZEOF_INT, elem_size * num_elems); in startVector()
513 startVector(Constants.SIZEOF_INT, offsets.length, Constants.SIZEOF_INT); in createVectorOfTables()
887 prep(minalign, SIZEOF_INT + (size_prefix ? SIZEOF_INT : 0)); in finish()
923 prep(minalign, SIZEOF_INT + FILE_IDENTIFIER_LENGTH + (size_prefix ? SIZEOF_INT : 0)); in finish()
DConstants.java31 static final int SIZEOF_INT = 4; field in Constants
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowStringBlock.java5 import static org.robolectric.res.android.Util.SIZEOF_INT;
73 int[] array = new int[num * ResStringPool_span.SIZEOF / SIZEOF_INT]; in nativeGetStyle()
79 final int numInts = ResStringPool_span.SIZEOF / SIZEOF_INT; in nativeGetStyle()
99 array[start + i] = buf.getInt(startOffset + i * SIZEOF_INT); in setIntArrayRegion()
/external/e2fsprogs/lib/uuid/
Duuid_types.h.in12 #if (@SIZEOF_INT@ == 8)
27 #if (@SIZEOF_INT@ == 2)
37 #if (@SIZEOF_INT@ == 4)
/external/flatbuffers/php/
DTable.php76 $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)) {
DConstants.php23 const SIZEOF_INT = 4; define in Google\\FlatBuffers\\Constants
DFlatbufferBuilder.php287 $new_off = $this->offset() - $off + Constants::SIZEOF_INT;
570 $this->prep(Constants::SIZEOF_INT, 0); // Ensure alignment is already done
588 $this->prep(Constants::SIZEOF_INT, $elem_size * $num_elems);
909 $this->prep($this->minalign, Constants::SIZEOF_INT);
913 $this->prep($this->minalign, Constants::SIZEOF_INT + Constants::FILE_IDENTIFIER_LENGTH);
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResStringPool.java14 import static org.robolectric.res.android.Util.SIZEOF_INT;
85 return myBuf().getInt(myOffset() + idx * SIZEOF_INT); in get()
256 …tryStyles = new IntArray(mEntries.myBuf(), mEntries.myOffset() + mHeader.stringCount * SIZEOF_INT); in setTo()
465 final int off = mEntryStyles.get(idx) / SIZEOF_INT; in styleAt()
469 mHeader.myBuf(), mHeader.myOffset() + mStyles + off * SIZEOF_INT); in styleAt()
472 (int)idx, (int)(off*SIZEOF_INT), in styleAt()
473 (int)(mStylePoolSize*SIZEOF_INT)); in styleAt()
DIdmap.java9 import static org.robolectric.res.android.Util.SIZEOF_INT;
175 if ((data_size - SIZEOF_CPTR) / SIZEOF_INT < in Load()
193 SIZEOF_CPTR + (dtohs(entry_header.entry_count) * SIZEOF_INT); in Load()
/external/flatbuffers/js/
Dflatbuffers.js43 flatbuffers.SIZEOF_INT = 4;
588 this.prep(flatbuffers.SIZEOF_INT, 0); // Ensure alignment is already done.
589 this.writeInt32(this.offset() - offset + flatbuffers.SIZEOF_INT);
691 this.prep(this.minalign, flatbuffers.SIZEOF_INT +
701 this.prep(this.minalign, flatbuffers.SIZEOF_INT + size_prefix);
750 this.prep(flatbuffers.SIZEOF_INT, elem_size * num_elems);
1088 if (this.bytes_.length < this.position_ + flatbuffers.SIZEOF_INT +
1096 this.readInt8(this.position_ + flatbuffers.SIZEOF_INT + i));
1147 offset += flatbuffers.SIZEOF_INT;
1214 return offset + this.readInt32(offset) + flatbuffers.SIZEOF_INT; // data starts after the length
[all …]
/external/libdivsufsort/CMakeModules/
DCheckLFS.cmake39 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/e2fsprogs/util/
Dsubst.conf.in9 SIZEOF_INT @SIZEOF_INT@
/external/python/cpython2/PC/
Dpyconfig.h387 #define SIZEOF_INT 4 macro
412 #if SIZEOF_INT == 4
429 #if SIZEOF_INT == 4
/external/python/cpython2/Include/
Dmodsupport.h99 #if SIZEOF_SIZE_T != SIZEOF_INT
109 #if SIZEOF_SIZE_T != SIZEOF_INT
/external/pdfium/third_party/libtiff/
D0027-build-config.patch11 -#define SIZEOF_INT sizeOfInt
16 +#define SIZEOF_INT 4
/external/openssh/
Ddefines.h227 # if (SIZEOF_INT == 4)
248 # if (SIZEOF_INT == 4)
266 # if (SIZEOF_INT == 4)
331 # if (SIZEOF_INT == 4)
341 # if (SIZEOF_INT == 8)
/external/freetype/builds/unix/
Dftconfig.h.in48 #undef SIZEOF_INT
50 #define FT_SIZEOF_INT SIZEOF_INT
/external/freetype/builds/vms/
Dftconfig.h45 #define SIZEOF_INT 4 macro

12345