/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
ContentData.cpp | 61 OwnPtr<ContentData> newData = contentData->cloneInternal(); 62 lastNewData->setNext(newData.release());
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/ |
TextureBlenderDDS.java | 43 ByteBuffer newData = BufferUtils.createByteBuffer(data.remaining());
53 newData.putLong(dataIndex, data.getLong());// just copy the
80 newData.putShort(dataIndex, rgb565);
85 newData.putInt(dataIndex, data.getInt());
89 return new Texture2D(new Image(format, width, height, newData));
92 dataArray.add(newData);
|
TextureBlenderAWT.java | 54 ByteBuffer newData = BufferUtils.createByteBuffer(width * height * depth * 4);
61 newData.put(dataIndex++, (byte) (resultPixel[0] * 255.0f));
62 newData.put(dataIndex++, (byte) (resultPixel[1] * 255.0f));
63 newData.put(dataIndex++, (byte) (resultPixel[2] * 255.0f));
64 newData.put(dataIndex++, (byte) (pixelColor[3] * 255.0f));
67 return new Texture2D(new Image(Format.RGBA8, width, height, newData));
70 dataArray.add(newData);
|
TextureBlenderLuminance.java | 44 ByteBuffer newData = BufferUtils.createByteBuffer(width * height * depth * 4);
52 newData.put(dataIndex++, (byte) (resultPixel[0] * 255.0f));
53 newData.put(dataIndex++, (byte) (resultPixel[1] * 255.0f));
54 newData.put(dataIndex++, (byte) (resultPixel[2] * 255.0f));
55 newData.put(dataIndex++, (byte) (tinAndAlpha[1] * 255.0f));
58 return new Texture2D(new Image(Format.RGBA8, width, height, newData));
61 dataArray.add(newData);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
IntArray.h | 82 int[] newData = new int[newSize]; 83 System.arraycopy(data, 0, newData, 0, data.length); 84 data = newData;
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebCString.cpp | 65 char* newData; 67 WTF::CString::newUninitialized(length, newData).buffer(); 68 memcpy(newData, data, length);
|
/external/chromium_org/third_party/icu/source/test/perf/usetperf/ |
bitset.cpp | 53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD); 54 uprv_memcpy(newData, data, len * BYTES_PER_WORD); 56 data = newData;
|
/external/icu4c/test/perf/usetperf/ |
bitset.cpp | 53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD); 54 uprv_memcpy(newData, data, len * BYTES_PER_WORD); 56 data = newData;
|
/frameworks/rs/ |
rsStream.cpp | 108 uint8_t *newData = (uint8_t*)malloc(mLength*2); 109 memcpy(newData, mData, mLength*sizeof(uint8_t)); 112 mData = newData;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/ |
IntArray.java | 82 int[] newData = new int[newSize]; 83 System.arraycopy(data, 0, newData, 0, data.length); 84 data = newData;
|
/external/chromium_org/third_party/icu/source/i18n/ |
ucol_cnt.cpp | 31 uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t)); 32 if(newData == NULL) { 38 uprv_free(newData); 42 tbl->CEs = newData;
|
/external/icu4c/i18n/ |
ucol_cnt.cpp | 31 uint32_t *newData = (uint32_t *)uprv_realloc(tbl->CEs, 2*tbl->size*sizeof(uint32_t)); 32 if(newData == NULL) { 38 uprv_free(newData); 42 tbl->CEs = newData;
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
AttributesImpl.java | 596 String newData[] = new String[max]; 598 System.arraycopy(data, 0, newData, 0, length*5); 600 data = newData;
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
AttributesImpl.java | 588 String newData[] = new String[max]; 590 System.arraycopy(data, 0, newData, 0, length*5); 592 data = newData;
|
/sdk/dumpeventlog/src/com/android/dumpeventlog/ |
DumpEventLog.java | 50 public void newData(byte[] data, int offset, int length) {
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zHandlerOut.cpp | 211 Int32 newData, newProps;
215 RINOK(updateCallback->GetUpdateItemInfo(i, &newData, &newProps, &indexInArchive));
218 ui.NewData = IntToBool(newData);
315 if (ui.NewData)
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/ |
UdpKernel.java | 185 protected void newData( DatagramPacket packet ) 285 newData( packet );
|
/external/srec/portable/src/ |
pmemory.c | 740 MemoryData* newData; 793 newData = (MemoryData *) PortNew(actualSize); 794 if (newData == NULL) 802 memcpy(newData, oldData, actualSize); 806 memcpy(newData, oldData, oldSize); 810 newData = (MemoryData *) realloc(oldData, actualSize); 816 newData = oldData; 820 if (newData != NULL && bMalloc) 834 newData->stackTrace = oldStackTrace; 835 newData->next = oldNext [all...] |
/libcore/luni/src/main/java/java/lang/ |
AbstractStringBuilder.java | 94 char[] newData = new char[min > newCount ? min : newCount]; 95 System.arraycopy(value, 0, newData, 0, count); 96 value = newData; 233 char[] newData = new char[value.length]; 234 System.arraycopy(value, 0, newData, 0, start); 235 System.arraycopy(value, end, newData, start, length); 236 value = newData; 256 char[] newData = new char[value.length]; 257 System.arraycopy(value, 0, newData, 0, index); 258 System.arraycopy(value, index + 1, newData, index, length) [all...] |
/libcore/luni/src/main/java/java/util/ |
Vector.java | 446 E[] newData = newElementArray(newCapacity); 449 System.arraycopy(elementData, 0, newData, 0, elementCount); 450 elementData = newData; 466 E[] newData = newElementArray(elementData.length + adding); 467 System.arraycopy(elementData, 0, newData, 0, elementCount); 468 elementData = newData; 486 E[] newData = newElementArray(elementData.length + adding); 487 System.arraycopy(elementData, 0, newData, 0, elementCount); 488 elementData = newData; [all...] |
/packages/apps/Camera2/src/com/android/camera/data/ |
CameraDataAdapter.java | 144 LocalMediaData.VideoData newData = LocalMediaData.VideoData.buildFromCursor(c); 147 updateData(pos, newData); 150 insertData(newData); 165 LocalMediaData.PhotoData newData = LocalMediaData.PhotoData.buildFromCursor(c); 169 updateData(pos, newData); 172 insertData(newData);
|
/sdk/eventanalyzer/src/com/android/eventanalyzer/ |
EventAnalyzer.java | 405 * @see com.android.ddmlib.log.LogReceiver.ILogListener#newData(byte[], int, int) 407 public void newData(byte[] data, int offset, int length) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
Utils.java | 221 ImageData newData = new ImageData(width, data.height, 8, palette); 223 newData.transparentPixel = rgbs.length - 1; 236 newData.setPixels(0, y, width, pixels, 0); 238 return newData;
|
/external/javassist/src/main/javassist/bytecode/ |
StackMapTable.java | 417 int[] newData = new int[data.length]; 420 newData[i] = srcPool.copy(data[i], destPool, null); 422 newData[i] = data[i]; 424 return newData;
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/ |
SelectorKernel.java | 198 protected void newData( NioEndpoint p, SocketChannel c, ByteBuffer shared, int size ) 380 newData( p, c, working, size );
|