/external/webkit/Source/WebCore/platform/graphics/ |
Image.h | 53 typedef struct tagSIZE SIZE; 54 typedef SIZE* LPSIZE; 96 bool isNull() const { return size().isEmpty(); } 104 virtual IntSize size() const = 0; 105 IntRect rect() const { return IntRect(IntPoint(), size()); } 106 int width() const { return size().width(); } 107 int height() const { return size().height(); } 155 static PassRefPtr<Image> loadPlatformThemeIcon(const char* name, int size);
|
/external/zlib/examples/ |
gun.c | 75 #define SIZE 32768U /* input and output buffer sizes */ 79 input file and a buffer of size SIZE */ 100 if ((unsigned)ret > SIZE - len) 101 ret = (int)(SIZE - len); 109 } while (ret != 0 && len < SIZE); 160 unsigned char inbuf[SIZE]; /* input buffer */ 161 unsigned char outbuf[SIZE]; /* output buffer */ 266 /* if the table will be full after this, increment the code size */ 349 while (stack > SIZE - outcnt) [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
VoiceMailConstants.java | 47 static final int SIZE = 3; 101 String[] data = new String[SIZE];
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
stun.h | 201 enum { SIZE = 8 }; 203 static const uint16 SIZE = 8; 229 enum { SIZE = 4 }; 231 static const uint16 SIZE = 4; 308 size_t Size() const;
|
stun.cc | 51 ASSERT(transaction_id_.size() == 16); 56 for (unsigned i = 0; i < attrs_->size(); i++) 62 ASSERT(str.size() == 16); 137 for (unsigned i = 0; i < attrs_->size(); i++) { 160 ASSERT(transaction_id.size() == 16); 198 for (unsigned i = 0; i < attrs_->size(); i++) { 219 if (length != StunAddressAttribute::SIZE) 227 if (length != StunUInt32Attribute::SIZE) 323 : StunAttribute(type, SIZE), family_(0), port_(0), ip_(0) { 347 : StunAttribute(type, SIZE), bits_(0) [all...] |
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
Attribute.java | 33 public static final Attribute SIZE = new AttributeImpl ("SIZE");
|
/frameworks/base/services/sensorservice/ |
SensorFusion.h | 71 void dump(String8& result, char* buffer, size_t SIZE);
|
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 {
|
SensorService.cpp | 169 for (size_t i=0 ; i<mSensorMap.size() ; i++) 177 const size_t SIZE = 1024; 178 char buffer[SIZE]; 181 snprintf(buffer, SIZE, "Permission Denial: " 188 snprintf(buffer, SIZE, "Sensor List:\n"); 190 for (size_t i=0 ; i<mSensorList.size() ; i++) { 193 snprintf(buffer, SIZE, 203 SensorFusion::getInstance().dump(result, buffer, SIZE); 204 SensorDevice::getInstance().dump(result, buffer, SIZE); 206 snprintf(buffer, SIZE, "%d active connections\n" 374 size_t size = mActiveSensors.size(); local 600 ssize_t size = SensorEventQueue::write(mChannel, local [all...] |
SensorDevice.cpp | 130 void SensorDevice::dump(String8& result, char* buffer, size_t SIZE) 136 snprintf(buffer, SIZE, "%d h/w sensors:\n", int(count)); 142 snprintf(buffer, SIZE, "handle=0x%08x, active-count=%d, rates(ms)={ ", 144 info.rates.size()); 146 for (size_t j=0 ; j<info.rates.size() ; j++) { 147 snprintf(buffer, SIZE, "%4.1f%s", 149 j<info.rates.size()-1 ? ", " : ""); 152 snprintf(buffer, SIZE, " }, selected=%4.1f ms\n", info.delay / 1e6f); 187 ident, handle, enabled, info.rates.size()); 196 if (info.rates.size() == 1) [all...] |
SensorFusion.cpp | 98 const bool newState = mClients.size() != 0; 128 void SensorFusion::dump(String8& result, char* buffer, size_t SIZE) { 130 snprintf(buffer, SIZE, "9-axis fusion %s (%d clients), gyro-rate=%7.2fHz, " 134 mClients.size(),
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
SizeTraits.h | 20 template<size_t SIZE>
|
/frameworks/native/opengl/libs/EGL/ |
Loader.cpp | 219 const ssize_t SIZE = 256; 220 char scrap[SIZE]; 232 if ((index>0 && (index<SIZE-1)) && (!strcmp(name+index, "OES"))) { 243 snprintf(scrap, SIZE, "%sOES", name); 306 * Here we adjust the PB size from its default value to 512KB which
|
/frameworks/native/services/surfaceflinger/ |
EventThread.h | 81 void dump(String8& result, char* buffer, size_t SIZE) const;
|
/device/moto/wingray/libaudio/ |
AudioHardware.cpp | 115 for (size_t index = 0; index < mInputs.size(); index++) { 456 // Return 20 msec input buffer size. 807 const size_t SIZE = 256; 808 char buffer[SIZE]; 811 snprintf(buffer, SIZE, "\tmInit: %s\n", mInit? "true": "false"); 813 snprintf(buffer, SIZE, "\tmMicMute: %s\n", mMicMute? "true": "false"); 815 snprintf(buffer, SIZE, "\tmBluetoothNrec: %s\n", mBluetoothNrec? "true": "false"); 817 snprintf(buffer, SIZE, "\tmBluetoothId: %d\n", mBluetoothId); 819 ::write(fd, result.string(), result.size()); 826 for (size_t index = 0; index < mInputs.size(); index++) [all...] |
/hardware/msm7k/libaudio-qsd8k/ |
AudioHardware.cpp | 210 for (size_t index = 0; index < mInputs.size(); index++) { 939 ALOGD("Firmware %s size %d\n", fn, remaining); 942 ALOGE("File %s size %d exceeds internal limit %d\n", [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) 571 char* X86JITInfo::allocateThreadLocalMemory(size_t size) { 573 TLSOffset -= size;
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
NinePatchTexture.java | 133 public int size() { method in class:NinePatchTexture.SmallCache 174 int n = mInstanceCache.size(); 183 // This keeps data for a specialization of NinePatchTexture with the size 384 int size = (pntCount * 2) * (Float.SIZE / Byte.SIZE); local 385 mXyBuffer = allocateDirectNativeOrderBuffer(size).asFloatBuffer(); 386 mUvBuffer = allocateDirectNativeOrderBuffer(size).asFloatBuffer(); 394 private static ByteBuffer allocateDirectNativeOrderBuffer(int size) { 395 return ByteBuffer.allocateDirect(size).order(ByteOrder.nativeOrder()) [all...] |
/external/apache-harmony/nio/src/test/java/common/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...] |
/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);
|
/external/webkit/Source/WebKit/android/ |
RenderSkinMediaButton.cpp | 207 SkScalar SIZE = gButton[imageIndex].width(); 209 SkScalar scale = SkScalarDiv(width - 2*imageMargin, SIZE);
|
/frameworks/base/core/java/android/provider/ |
DrmStore.java | 65 * The size of the file in bytes 68 public static final String SIZE = "_size"; 146 long size = fis.getChannel().size(); local 164 values.put(DrmStore.Columns.SIZE, size);
|
/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/webkit/Source/WebKit/win/Interfaces/ |
IWebFramePrivate.idl | 59 HRESULT scrollOffset([out, retval] SIZE* offset); 73 HRESULT size([out, retval] SIZE* size);
|
/frameworks/av/include/media/stagefright/ |
SurfaceMediaSource.h | 107 size_t SIZE) const;
|