HomeSort by relevance Sort by last modified time
    Searched full:newdata (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /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;
  /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/libsepol/src/
policydb_convert.c 35 policydb_t * policydb, void **newdata, size_t * newlen)
88 /* Update (newdata, newlen) */
89 *newdata = tmp_data;
policydb_public.c 172 sepol_policydb_t * p, void **newdata,
175 return policydb_to_image(handle, &p->p, newdata, newlen);
  /external/javassist/src/main/javassist/bytecode/
InnerClassesAttribute.java 184 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/webkit/Source/WebCore/bindings/cpp/
WebDOMCString.cpp 46 char* newData;
48 WTF::CString::newUninitialized(length, newData).buffer();
49 memcpy(newData, data, length);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
BytesBufferPool.java 52 byte[] newData = new byte[data.length * 2];
53 System.arraycopy(data, 0, newData, 0, data.length);
54 data = newData;
  /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...]
  /external/libsepol/include/sepol/
users.h 13 policy for the new user configurations. Sets '*newdata' and '*newlen'
17 void **newdata, size_t * newlen);
  /external/libsepol/man/man3/
sepol_genusers.3 7 .BI "int sepol_genusers(void *" data ", size_t "len ", const char *" usersdir ", void *" newdata ", size_t *" newlen);
27 .I newdata
  /external/webkit/Source/WebCore/manual-tests/
database-threading-stress-test.html 24 function newData()
37 newData();
  /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...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRReaderStream.java 78 char[] newdata = new char[data.length*2]; // resize local
79 System.arraycopy(data, 0, newdata, 0, data.length);
80 data = 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/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;
IntArray.m 82 int[] newData = new int[newSize];
83 System.arraycopy(data, 0, newData, 0, data.length);
84 data = newData;
  /external/webkit/Source/WebKit/chromium/src/
WebCString.cpp 71 char* newData;
73 WTF::CString::newUninitialized(length, newData).buffer();
74 memcpy(newData, data, length);
  /external/webkit/Source/WebKit2/Shared/
ShareableBitmap.cpp 145 char* newData = 0;
146 if (!tryFastRealloc(m_data, newNumBytes).getValue(newData)) {
152 m_data = newData;
  /frameworks/rs/
rsStream.cpp 106 uint8_t *newData = (uint8_t*)malloc(mLength*2);
107 memcpy(newData, mData, mLength*sizeof(uint8_t));
110 mData = newData;
  /bionic/libc/kernel/tools/
update_all.py 63 dst_path, newdata = clean_header.cleanupFile(path, original_dir)
68 r = b.editFile( dst_path, newdata )
clean_header.py 130 dst_path, newdata = cleanupFile(path,kernel_original_path)
131 print newdata
140 dst_path, newdata = cleanupFile(path,kernel_original_path)
145 r = b.editFile( dst_path, newdata )
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.h 33 QtPixmapInstance(PassRefPtr<RootObject> rootObj, const QVariant& newData);
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 175 typename MatrixType::Storage newdata(m_matrix.nonZeros() - nnz_previous + nnz);
177 std::memcpy(&newdata.value(0), &m_matrix.data().value(0), nnz_head*sizeof(Scalar));
178 std::memcpy(&newdata.index(0), &m_matrix.data().index(0), nnz_head*sizeof(Index));
180 std::memcpy(&newdata.value(nnz_head), &tmp.data().value(0), nnz*sizeof(Scalar));
181 std::memcpy(&newdata.index(nnz_head), &tmp.data().index(0), nnz*sizeof(Index));
183 std::memcpy(&newdata.value(nnz_head+nnz), &matrix.data().value(tail), nnz_tail*sizeof(Scalar));
184 std::memcpy(&newdata.index(nnz_head+nnz), &matrix.data().index(tail), nnz_tail*sizeof(Index));
186 matrix.data().swap(newdata);

Completed in 985 milliseconds

1 2 3 4