/external/webkit/WebCore/rendering/style/ |
StyleSurroundData.h | 46 LengthBox offset; member in class:WebCore::StyleSurroundData
|
/frameworks/base/awt/java/awt/image/ |
ByteLookupTable.java | 29 * offset value. The offset value will be subtracted from the input values 43 * Instantiates a new ByteLookupTable with the specified offset value and 46 * @param offset 47 * the offset value. 51 public ByteLookupTable(int offset, byte[] data) { 52 super(offset, 1); 61 * Instantiates a new ByteLookupTable with the specified offset value and 65 * @param offset 66 * the offset value 97 int offset = getOffset(); local 127 int offset = getOffset(); local [all...] |
LookupTable.java | 30 * the number of components and offset value. ByteLookupTable and 39 * The offset. 41 private int offset; field in class:LookupTable 49 * Instantiates a new LookupTable with the specified offset value and number 52 * @param offset 53 * the offset value. 57 protected LookupTable(int offset, int numComponents) { 58 if (offset < 0) { 59 // awt.232=Offset should be not less than zero 67 this.offset = offset [all...] |
ShortLookupTable.java | 29 * image and an offset value. The offset value will be subtracted from the input 43 * Instantiates a new ShortLookupTable with the specified offset value and 46 * @param offset 47 * the offset value. 51 public ShortLookupTable(int offset, short[] data) { 52 super(offset, 1); 59 * Instantiates a new ShortLookupTable with the specified offset value and 63 * @param offset 64 * the offset value 104 int offset = getOffset(); local 124 int offset = getOffset(); local [all...] |
/frameworks/base/cmds/keystore/ |
keystore_cli.c | 80 int offset; local 86 for (offset = 0; offset < length; offset += i) { 87 i = recv(sock, &bytes[offset], length - offset, 0);
|
keystore_get.h | 58 int offset = 0; local 60 while (offset < length) { 61 int n = recv(sock, &value[offset], length - offset, 0); 66 offset += n;
|
/frameworks/base/graphics/java/android/graphics/ |
PointF.java | 62 public final void offset(float dx, float dy) { method in class:PointF
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
calc_gsfb_table.cpp | 115 offset = 0; 119 pFrameInfo->group_len[group_idx] = group[group_idx] - offset; 120 offset = group[group_idx]; 123 WHILE (offset < NUM_SHORT_WINDOWS); 129 offset = 0; 137 offset += pFrameInfo->sfb_width_128[sfb] * len; 138 *pFrameSfbTop++ = offset; 217 Int offset; local 232 offset = 0; 236 pFrameInfo->group_len[ngroups] = group[ngroups] - offset; [all...] |
/frameworks/base/media/libstagefright/codecs/amrnb/common/src/ |
lsp_lsf.cpp | 174 Word16 i, ind, offset; 180 offset = lsf[i] & 0x00ff; // offset = b0-b7 of lsf[i] 182 // lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256 184 L_tmp = L_mult (sub (table[ind + 1], table[ind]), offset); 221 Word16 i, ind, offset; local 227 offset = lsf[i] & 0x00ff; /* offset = b0-b7 of lsf[i] */ 229 /* lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256 */ 231 L_tmp = ((Word32)(table[ind + 1] - table[ind]) * offset) >> 8 [all...] |
/frameworks/base/media/libstagefright/colorconversion/ |
SoftwareRenderer.cpp | 75 size_t offset = mIndex * mFrameSize; local 76 void *dst = (uint8_t *)mMemoryHeap->getBase() + offset; 82 mISurface->postBuffer(offset);
|
/hardware/ti/omap3/liboverlay/ |
v4l2_utils.h | 42 uint32_t offset; member in struct:__anon7969
|
/ndk/build/platforms/android-3/arch-arm/usr/include/asm/ |
scatterlist.h | 20 unsigned int offset; member in struct:scatterlist
|
/ndk/build/platforms/android-4/arch-arm/usr/include/asm/ |
scatterlist.h | 20 unsigned int offset; member in struct:scatterlist
|
/ndk/build/platforms/android-5/arch-arm/usr/include/asm/ |
scatterlist.h | 20 unsigned int offset; member in struct:scatterlist
|
/ndk/build/platforms/android-5/arch-x86/usr/include/asm/ |
scatterlist_32.h | 19 unsigned int offset; member in struct:scatterlist
|
/ndk/build/platforms/android-8/arch-arm/usr/include/asm/ |
scatterlist.h | 20 unsigned int offset; member in struct:scatterlist
|
/ndk/build/platforms/android-8/arch-x86/usr/include/asm/ |
scatterlist_32.h | 19 unsigned int offset; member in struct:scatterlist
|
/ndk/samples/hello-neon/jni/ |
helloneon-intrinsics.c | 27 int nn, offset = -kernelSize/2; local 36 int16x4_t input_vec = vld1_s16(input + (nn+offset+mm*4)); 48 sum += kernel[mm] * input[nn+offset+mm]; 54 int nn, offset = -kernelSize/2; 59 sum += kernel[mm]*input[nn+offset+mm];
|
/bionic/libc/kernel/common/linux/mtd/ |
partitions.h | 20 u_int32_t offset; member in struct:mtd_partition
|
/dalvik/dx/tests/093-ssa-invoke-range/ |
Blort.java | 58 int offset = 1; local 62 methodThatNeedsInvokeRange(src, 0, dest, offset, 5, 0); 63 return offset; 65 long offset = System.currentTimeMillis();; local 66 return offset;
|
/dalvik/libcore/archive/src/main/java/org/apache/harmony/archive/util/ |
Util.java | 41 int offset = source.length() - length; local 43 char c1 = source.charAt(i + offset);
|
/dalvik/libcore/crypto/src/main/java/javax/crypto/ |
MacSpi.java | 75 * buffer {@code input} from the specified {@code offset} and length {@code 80 * @param offset 81 * the offset in the buffer. 85 protected abstract void engineUpdate(byte[] input, int offset, int len); 102 int offset = input.arrayOffset(); local 105 engineUpdate(bInput, offset + position, limit - position);
|
/dalvik/libcore/nio/src/main/java/java/nio/ |
CharArrayBuffer.java | 36 protected final int offset; field in class:CharArrayBuffer 46 CharArrayBuffer(int capacity, char[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len); 106 return String.copyValueOf(backingArray, offset + position, remaining());
|
DoubleArrayBuffer.java | 36 protected final int offset; field in class:DoubleArrayBuffer 46 DoubleArrayBuffer(int capacity, double[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len);
|
FloatArrayBuffer.java | 36 protected final int offset; field in class:FloatArrayBuffer 46 FloatArrayBuffer(int capacity, float[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len);
|