HomeSort by relevance Sort by last modified time
    Searched defs:newData (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.cpp 61 OwnPtr<ContentData> newData = contentData->cloneInternal();
62 lastNewData->setNext(newData.release());
  /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/icu/icu4c/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;
  /frameworks/rs/
rsStream.cpp 108 uint8_t *newData = (uint8_t*)malloc(mLength*2);
109 memcpy(newData, mData, mLength*sizeof(uint8_t));
112 mData = newData;
  /hardware/ti/omap4-aah/libtiutils/
DebugUtils.cpp 63 Data * const newData = new Data;
64 newData->threads.setCapacity(newSize);
68 newData->threads.insertVectorAt(mData->threads, 0);
72 newData->threads.add(new ThreadInfo);
75 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/angle/tests/angle_tests/
BufferDataTest.cpp 316 unsigned char newData[] = { 0, 255, 0 };
317 glBufferSubData(GL_ARRAY_BUFFER, 3, 3, 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/chromium_org/third_party/skia/bench/
ETCBitmapBench.cpp 52 etc1_byte* newData = reinterpret_cast<etc1_byte *>(
54 etc1_pkm_format_header(newData, newWidth, newHeight);
56 etc1_byte* copyInto = newData;
73 return newData;
  /external/chromium_org/third_party/skia/gm/
etc1bitmap.cpp 51 etc1_byte *newData = reinterpret_cast<etc1_byte *>(am.get());
53 etc1_pkm_format_header(newData, newWidth, newHeight);
54 newData += ETC_PKM_HEADER_SIZE;
58 memcpy(newData, origData, (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE);
60 newData += (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
BitArray.java 95 long[] newData = new long[size];
97 System.arraycopy(data, 0, newData, 0, data.length);
99 data = newData;
141 long[] newData = new long[data.length + arrayShift];
142 System.arraycopy(data, 0, newData, arrayShift, data.length);
143 data = newData;
  /external/skia/bench/
ETCBitmapBench.cpp 52 etc1_byte* newData = reinterpret_cast<etc1_byte *>(
54 etc1_pkm_format_header(newData, newWidth, newHeight);
56 etc1_byte* copyInto = newData;
73 return newData;
  /external/skia/gm/
etc1bitmap.cpp 51 etc1_byte *newData = reinterpret_cast<etc1_byte *>(am.get());
53 etc1_pkm_format_header(newData, newWidth, newHeight);
54 newData += ETC_PKM_HEADER_SIZE;
58 memcpy(newData, origData, (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE);
60 newData += (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE;
  /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;
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderWMV.cpp 532 uint8_t *newData = NULL;
534 status = updateConfigData(data, size, &newData, &newSize);
538 status = VideoDecoderBase::parseBuffer(newData, newSize, true, (void**)vbpData);
539 delete [] 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/chromium_org/third_party/skia/tools/
PictureResultsWriter.h 209 Json::Value newData = data->getJSON(timerTypes, result, numInnerLoops);
216 for(Json::ValueIterator iter = newData.begin(); iter != newData.end();
  /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/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...]
  /frameworks/base/core/jni/
android_view_RenderNode.cpp 83 DisplayListData* newData = reinterpret_cast<DisplayListData*>(newDataPtr);
84 renderNode->setStagingDisplayList(newData);
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 95 char[] newData = new char[min > newCount ? min : newCount];
96 System.arraycopy(value, 0, newData, 0, count);
97 value = newData;
239 char[] newData = new char[value.length];
240 System.arraycopy(value, 0, newData, 0, start);
241 System.arraycopy(value, end, newData, start, length);
242 value = newData;
388 char[] newData = new char[newCount];
389 System.arraycopy(value, 0, newData, 0, index);
391 System.arraycopy(value, index, newData, index + size, count - index)
    [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...]

Completed in 1128 milliseconds

1 2 3 4 5 6