HomeSort by relevance Sort by last modified time
    Searched refs:SIZE (Results 126 - 150 of 422) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/native/services/sensorservice/
Fusion.cpp 130 template<typename TYPE, size_t SIZE>
132 mat<TYPE, SIZE, SIZE> mSumXX;
133 vec<TYPE, SIZE> mSumX;
137 void update(const vec<TYPE, SIZE>& x) {
142 mat<TYPE, SIZE, SIZE> operator()() const {
  /external/clang/test/CodeGen/
ms-inline-asm.c 197 __asm mov eax, SIZE foo
198 __asm mov eax, SIZE bar
199 __asm mov eax, SIZE _foo
200 __asm mov eax, SIZE _bar
302 __asm mov osize, SIZE arr
  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 27 template<class real, int SIZE=Dynamic>
33 enum {IsFixedSize = (SIZE!=Dynamic)};
40 typedef Eigen::Matrix<real,SIZE,SIZE> gene_matrix;
41 typedef Eigen::Matrix<real,SIZE,1> gene_vector;
53 A.resize(A_stl[0].size(), A_stl.size());
55 for (int j=0; j<A_stl.size() ; j++){
56 for (int i=0; i<A_stl[j].size() ; i++){
63 B.resize(B_stl.size(),1)
118 int size = dst.cols(); local
    [all...]
  /external/llvm/lib/Target/X86/
X86JITInfo.cpp 60 // For ELF targets, use a .size and .type directive, to let tools
63 # define SIZE(sym) ".size " #sym ", . - " #sym "\n"
66 # define SIZE(sym)
180 SIZE(X86CompilationCallback)
235 SIZE(X86CompilationCallback)
300 SIZE(X86CompilationCallback_SSE)
575 char* X86JITInfo::allocateThreadLocalMemory(size_t size) {
577 TLSOffset -= size;
  /external/eigen/Eigen/src/Core/util/
Memory.h 91 inline void* handmade_aligned_malloc(size_t size)
93 void *original = std::malloc(size+16);
111 inline void* handmade_aligned_realloc(void* ptr, size_t size, size_t = 0)
113 if (ptr == 0) return handmade_aligned_malloc(size);
115 original = std::realloc(original,size+16);
126 void* aligned_malloc(size_t size);
134 inline void* generic_aligned_realloc(void* ptr, size_t size, size_t old_size)
137 return aligned_malloc(size);
139 if (size==0)
145 void* newptr = aligned_malloc(size);
    [all...]
StaticAssert.h 129 // static assertion failing if the type \a TYPE is not fixed-size
134 // static assertion failing if the type \a TYPE is not dynamic-size
139 // static assertion failing if the type \a TYPE is not a vector type of the given size
140 #define EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(TYPE, SIZE) \
141 EIGEN_STATIC_ASSERT(TYPE::IsVectorAtCompileTime && TYPE::SizeAtCompileTime==SIZE, \
144 // static assertion failing if the type \a TYPE is not a vector type of the given size
149 // static assertion failing if the two vector expression types are not compatible (same fixed-size or dynamic size)
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 61 OpenableColumns.SIZE};
68 if (OpenableColumns.SIZE.equals(projection[i])) {
81 result[i] = null; // Size is unknown, so null, if it was known, it would go here.
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLong.java 76 checkArgument(value.signum() >= 0 && value.bitLength() <= Long.SIZE,
201 bigInt = bigInt.setBit(Long.SIZE - 1);
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 21 template<size_t SIZE>
45 template<size_t SIZE>
162 enum { Size = SizeOfStr };
165 #define STR_SIZE(str, fieldTy) StringSizerHelper<sizeof(str)-1, fieldTy>::Size
  /frameworks/native/include/ui/
vec3.h 51 enum { SIZE = 3 };
52 inline static size_type size() { return SIZE; } function in class:android::tvec3
94 // cross product works only on vectors of size 3
vec4.h 54 enum { SIZE = 4 };
55 inline static size_type size() { return SIZE; } function in class:android::tvec4
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java 313 * @param size the content size to be written
317 private void writeLargeDataToFile(File file, int size) throws FileNotFoundException,
320 byte[] buf = new byte[size];
323 // we don't care about content - just need a particular file size
495 * @tests java.nio.channels.FileChannel#size()
498 assertEquals(0, readOnlyFileChannel.size());
499 assertEquals(0, writeOnlyFileChannel.size());
500 assertEquals(0, readWriteFileChannel.size());
504 * @tests java.nio.channels.FileChannel#size()
509 .size()); method
3071 public long size() throws IOException { method in class:FileChannelTest.MockFileChannel
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/provider/
SharedImageProvider.java 96 OpenableColumns.SIZE
99 // If we receive a query on display name or size,
114 } else if (projection[i].equalsIgnoreCase(OpenableColumns.SIZE)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 123 class SIZE(Structure):
126 tagSIZE = SIZEL = SIZE
180 'SC_HANDLE', 'SERVICE_STATUS_HANDLE', 'SHORT', 'SIZE', 'SIZEL',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 123 class SIZE(Structure):
126 tagSIZE = SIZEL = SIZE
180 'SC_HANDLE', 'SERVICE_STATUS_HANDLE', 'SHORT', 'SIZE', 'SIZEL',
  /external/guava/guava/src/com/google/common/hash/
BloomFilterStrategies.java 38 bits.set(nextHash % bits.size());
53 if (!bits.get(nextHash % bits.size())) {
83 int size() { method in class:BloomFilterStrategies.BitArray
84 return data.length * Long.SIZE;
  /external/skia/bench/
ChecksumBench.cpp 25 SIZE = U32COUNT * 4,
  /frameworks/av/include/media/stagefright/
SurfaceMediaSource.h 108 size_t SIZE) const;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
FileCache.java 45 {String.format("sum(%s)", FileEntry.Columns.SIZE)};
48 FileEntry.Columns.CONTENT_URL, FileEntry.Columns.SIZE};
108 entry.size = file.length();
110 if (entry.size >= mCapacity) {
112 throw new IllegalArgumentException("file too large: " + entry.size);
119 entry.size = original.size;
121 mTotalBytes += entry.size;
152 mTotalBytes -= file.size;
228 long size = cursor.getLong(3) local
271 public long size; field in class:FileCache.FileEntry
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat32BootSector.java 193 final long offset = getBootSectorCopySector() * SIZE;
FsInfoSector.java 48 super(device, offset, BootSector.SIZE);
AbstractDirectory.java 117 if (newEntries.size() > capacity)
131 final long newCount = newSize / FatDirectoryEntry.SIZE;
160 return this.entries.size();
179 return entries.size() + ((this.volumeLabel != null) ? 1 : 0);
215 getCapacity() * FatDirectoryEntry.SIZE);
217 for (int i=0; i < entries.size(); i++) {
246 getCapacity() * FatDirectoryEntry.SIZE);
  /external/chromium_org/third_party/skia/include/core/
SkWriter32.h 50 uint32_t size() const { return this->bytesWritten(); } function in class:SkWriter32
59 void reset(void* storage, size_t size);
61 // size MUST be multiple of 4
62 uint32_t* reserve(size_t size) {
63 SkASSERT(SkAlign4(size) == size);
66 if (NULL == block || block->available() < size) {
67 block = this->doReserve(size);
69 fSize += size;
70 return block->alloc(size);
126 size_t size = path.writeToMemory(NULL); local
132 size_t size = matrix.writeToMemory(NULL); local
138 size_t size = rgn.writeToMemory(NULL); local
    [all...]
  /external/eigen/bench/
benchVecAdd.cpp 7 #ifndef SIZE
8 #define SIZE 50
17 __attribute__ ((noinline)) void benchVec(Scalar* a, Scalar* b, Scalar* c, int size);
23 int size = SIZE * 8; local
24 int size2 = size * size;
29 for (int i=0; i<size; ++i)
45 for (int innersize = size; innersize>2 ; --innersize)
91 void benchVec(Scalar* a, Scalar* b, Scalar* c, int size)
    [all...]
  /external/skia/include/core/
SkWriter32.h 50 uint32_t size() const { return this->bytesWritten(); } function in class:SkWriter32
59 void reset(void* storage, size_t size);
61 // size MUST be multiple of 4
62 uint32_t* reserve(size_t size) {
63 SkASSERT(SkAlign4(size) == size);
66 if (NULL == block || block->available() < size) {
67 block = this->doReserve(size);
69 fSize += size;
70 return block->alloc(size);
126 size_t size = path.writeToMemory(NULL); local
132 size_t size = matrix.writeToMemory(NULL); local
138 size_t size = rgn.writeToMemory(NULL); local
    [all...]

Completed in 717 milliseconds

1 2 3 4 56 7 8 91011>>