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

  /frameworks/rs/api/
GenerateStubsWhiteList.cpp 62 static string findSubstitute(const string& typeName, unsigned int apiLevel, int intSize) {
69 if (!info.includesVersion(apiLevel) || (info.intSize != 0 && info.intSize != intSize)) {
93 * the resulting list. 'apiLevel' and 'intSize' specifies the API level and bitness
96 list<string> expandTypedefs(const string type, unsigned int apiLevel, int intSize, string& vectorSize) {
102 const string substitute = findSubstitute(*i, apiLevel, intSize);
295 unsigned int apiLevel, int intSize) {
307 list<string> tokens = expandTypedefs(p->rsType, apiLevel, intSize, vectorSize);
322 /* Add the mangling for this permutation of the function. apiLevel and intSize is use
    [all...]
GenerateHeaderFiles.cpp 46 if (info.intSize == 32) {
48 } else if (info.intSize == 64) {
79 if (info.intSize != 0) {
GenerateDocumentation.cpp 79 if (a->intSize != b.intSize) {
312 if (info.intSize == 32) {
314 } else if (info.intSize == 64) {
Specification.h 135 int intSize;
137 VersionInfo() : minVersion(0), maxVersion(0), intSize(0) {}
Specification.cpp 248 sscanf(scanner->getValue().c_str(), "%i", &intSize);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ParserFactory.java 106 int intSize = (int) size;
112 if (intSize != -1) {
113 avail = intSize;
124 if (read == intSize) {
  /prebuilts/go/darwin-x86/src/image/png/
paeth.go 7 // intSize is either 32 or 64.
8 const intSize = 32 << (^uint(0) >> 63)
12 m := x >> (intSize - 1)
  /prebuilts/go/linux-x86/src/image/png/
paeth.go 7 // intSize is either 32 or 64.
8 const intSize = 32 << (^uint(0) >> 63)
12 m := x >> (intSize - 1)
  /prebuilts/go/darwin-x86/src/cmd/vet/
asmdecl.go 35 intSize int
190 localSize += archDef.intSize
193 localSize += archDef.intSize
342 size = arch.intSize
362 size = arch.ptrSize + 2*arch.intSize
464 kind: asmKind(arch.intSize),
467 size: arch.intSize,
471 kind: asmKind(arch.intSize),
473 off: offset + arch.ptrSize + arch.intSize,
474 size: arch.intSize,
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
asmdecl.go 35 intSize int
190 localSize += archDef.intSize
193 localSize += archDef.intSize
342 size = arch.intSize
362 size = arch.ptrSize + 2*arch.intSize
464 kind: asmKind(arch.intSize),
467 size: arch.intSize,
471 kind: asmKind(arch.intSize),
473 off: offset + arch.ptrSize + arch.intSize,
474 size: arch.intSize,
    [all...]
  /developers/build/prebuilts/gradle/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/
SoundRecorder.java 175 final int intSize = AudioTrack.getMinBufferSize(RECORDING_RATE, CHANNELS_OUT, FORMAT);
192 CHANNELS_OUT, FORMAT, intSize, AudioTrack.MODE_STREAM);
193 byte[] buffer = new byte[intSize * 2];
  /developers/samples/android/wearable/wear/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/
SoundRecorder.java 175 final int intSize = AudioTrack.getMinBufferSize(RECORDING_RATE, CHANNELS_OUT, FORMAT);
192 CHANNELS_OUT, FORMAT, intSize, AudioTrack.MODE_STREAM);
193 byte[] buffer = new byte[intSize * 2];
  /development/samples/browseable/WearSpeakerSample/src/com.example.android.wearable.speaker/
SoundRecorder.java 175 final int intSize = AudioTrack.getMinBufferSize(RECORDING_RATE, CHANNELS_OUT, FORMAT);
192 CHANNELS_OUT, FORMAT, intSize, AudioTrack.MODE_STREAM);
193 byte[] buffer = new byte[intSize * 2];
  /prebuilts/go/darwin-x86/src/strconv/
atoi.go 34 const intSize = 32 << (^uint(0) >> 63)
36 // IntSize is the size in bits of an int or uint value.
37 const IntSize = intSize
46 bitSize = int(IntSize)
158 bitSize = int(IntSize)
  /prebuilts/go/linux-x86/src/strconv/
atoi.go 34 const intSize = 32 << (^uint(0) >> 63)
36 // IntSize is the size in bits of an int or uint value.
37 const IntSize = intSize
46 bitSize = int(IntSize)
158 bitSize = int(IntSize)
  /prebuilts/go/darwin-x86/src/cmd/cgo/
main.go 34 IntSize int64
318 intSize := intSizeMap[goarch]
319 if intSize == 0 {
320 fatalf("unknown intSize for $GOARCH %q", goarch)
329 IntSize: intSize,
gcc.go 527 conv.Init(p.PtrSize, p.IntSize)
964 intSize int64
971 func (c *typeConv) Init(ptrSize, intSize int64) {
973 c.intSize = intSize
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
main.go 34 IntSize int64
318 intSize := intSizeMap[goarch]
319 if intSize == 0 {
320 fatalf("unknown intSize for $GOARCH %q", goarch)
329 IntSize: intSize,
gcc.go 527 conv.Init(p.PtrSize, p.IntSize)
964 intSize int64
971 func (c *typeConv) Init(ptrSize, intSize int64) {
973 c.intSize = intSize
    [all...]
  /external/tpm2/
CryptUtil.c 372 UINT32 intSize, // IN: the size of 'intValue' in byte
377 pAssert( intValue != NULL && (intSize == 1 || intSize == 2
378 || intSize == 4 || intSize == 8));
383 BYTE *p = &((BYTE *)intValue)[intSize - 1];
387 switch (intSize)
402 CryptUpdateDigest(state, intSize, marshalBuffer);
    [all...]
CryptUtil_fp.h 348 UINT32 intSize, // IN: the size of 'intValue' in byte
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.util_1.0.200.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 340 long intSize = (long) intStats.getBlockCount() * (long) intStats.getBlockSize();
    [all...]

Completed in 517 milliseconds