Searched refs:newData (Results 1 - 25 of 49) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DIntArray.java82 int[] newData = new int[newSize];
83 System.arraycopy(data, 0, newData, 0, data.length);
84 data = newData;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DIntArray.m82 int[] newData = new int[newSize];
83 System.arraycopy(data, 0, newData, 0, data.length);
84 data = newData;
H A DIntArray.h82 int[] newData = new int[newSize]; local
83 System.arraycopy(data, 0, newData, 0, data.length);
84 data = newData;
/external/javassist/src/main/javassist/bytecode/
H A DInnerClassesAttribute.java184 byte[] newData = new byte[len + 8];
186 newData[i] = data[i];
189 ByteArray.write16bit(n + 1, newData, 0);
191 ByteArray.write16bit(inner, newData, len);
192 ByteArray.write16bit(outer, newData, len + 2);
193 ByteArray.write16bit(name, newData, len + 4);
194 ByteArray.write16bit(flags, newData, len + 6);
196 set(newData);
/external/icu4c/test/perf/usetperf/
H A Dbitset.cpp53 int32_t* newData = (int32_t*) uprv_malloc(newLen * BYTES_PER_WORD); local
54 uprv_memcpy(newData, data, len * BYTES_PER_WORD);
56 data = newData;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
H A DTextureBlenderDDS.java43 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);
H A DTextureBlenderAWT.java54 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);
H A DTextureBlenderLuminance.java44 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/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMCString.cpp46 char* newData; local
48 WTF::CString::newUninitialized(length, newData).buffer();
49 memcpy(newData, data, length);
/external/webkit/Source/WebKit/chromium/src/
H A DWebCString.cpp71 char* newData; local
73 WTF::CString::newUninitialized(length, newData).buffer();
74 memcpy(newData, data, length);
/external/webkit/Source/WebKit2/Shared/
H A DShareableBitmap.cpp145 char* newData = 0; local
146 if (!tryFastRealloc(m_data, newNumBytes).getValue(newData)) {
152 m_data = newData;
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_pixmapruntime.h33 QtPixmapInstance(PassRefPtr<RootObject> rootObj, const QVariant& newData);
/external/srec/portable/src/
H A Dpmemory.c740 MemoryData* newData; local
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
[all...]
/external/webkit/LayoutTests/http/tests/resources/
H A Dnetwork-simulator.php152 $newData = "\n".$path; variable
154 file_put_contents($resourceLogFile, $newData, FILE_APPEND);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DByteArrayOutput.java484 byte[] newData = new byte[desiredSize * 2 + 1000];
485 System.arraycopy(data, 0, newData, 0, cursor);
486 data = newData;
H A DByteArrayAnnotatedOutput.java577 byte[] newData = new byte[desiredSize * 2 + 1000];
578 System.arraycopy(data, 0, newData, 0, cursor);
579 data = newData;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DAttributesImpl.java596 String newData[] = new String[max];
598 System.arraycopy(data, 0, newData, 0, length*5);
600 data = newData;
/external/webkit/Source/JavaScriptCore/heap/
H A DMarkStack.h135 void* newData = allocateStack(m_allocated); local
136 memcpy(newData, m_data, oldAllocation);
138 m_data = reinterpret_cast<T*>(newData);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java538 byte[] newData = new byte[desiredSize * 2 + 1000];
539 System.arraycopy(data, 0, newData, 0, cursor);
540 data = newData;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DUtils.java221 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/icu4c/i18n/
H A Dcolldata.cpp520 CollData *result = NULL, *newData = NULL; local
529 newData = new CollData(collator, key, keyLength, status);
530 newEntry = new CollDataCacheEntry(newData);
532 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
541 uhash_put(cache, newData->key, newEntry, &status);
546 delete newData;
551 return newData;
565 delete newData;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
H A DUdpKernel.java185 protected void newData( DatagramPacket packet ) method in class:UdpKernel
285 newData( packet );
/external/webkit/Source/WebCore/dom/
H A DCharacterData.cpp171 void CharacterData::setDataAndUpdate(PassRefPtr<StringImpl> newData, unsigned offsetOfReplacedData, unsigned oldLength, unsigned newLength) argument
176 m_data = newData;
/external/icu4c/common/
H A Dnormalizer2impl.cpp1765 impl.makeCanonIterDataFromNorm16(start, end, (uint16_t)value, *newData, errorCode);
1773 CanonIterData *newData; member in class:CanonIterDataSingleton
1789 me->newData=new CanonIterData(errorCode);
1790 if(me->newData==NULL) {
1796 utrie2_freeze(me->newData->trie, UTRIE2_32_VALUE_BITS, &errorCode);
1798 return me->newData;
1801 delete me->newData;
1806 CanonIterData &newData,
1818 uint32_t oldValue=utrie2_get32(newData.trie, c);
1852 newData
1805 makeCanonIterDataFromNorm16(UChar32 start, UChar32 end, uint16_t norm16, CanonIterData &newData, UErrorCode &errorCode) const argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DDrawUtils.java312 byte[] newData = new byte[destBytesPerLine * srcData.width];
319 System.arraycopy(srcData.data, srcIndex, newData, destIndex, bytesPerPixel);
327 newData);

Completed in 1204 milliseconds

12