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

1 2

  /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/webkit/Source/WebCore/bindings/cpp/
WebDOMCString.cpp 46 char* newData;
48 WTF::CString::newUninitialized(length, newData).buffer();
49 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/base/libs/rs/
rsStream.cpp 106 uint8_t *newData = (uint8_t*)malloc(mLength*2);
107 memcpy(newData, mData, mLength*sizeof(uint8_t));
110 mData = newData;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
LogReceiver.java 59 * <li>{@link #newData(byte[], int, int)} provides a way to receive the raw information
76 public void newData(byte[] data, int offset, int length);
115 mListener.newData(data, offset, length);
  /external/antlr/src/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/webkit/Source/WebKit/chromium/src/
WebCString.cpp 71 char* newData;
73 WTF::CString::newUninitialized(length, newData).buffer();
74 memcpy(newData, data, length);
  /external/collada/include/dae/
daeArray.h 165 T* newData = (T*)malloc(newCapacity*_elementSize);
167 new (&newData[i]) T(get(i));
174 _data = (daeMemoryRef)newData;
  /external/webkit/LayoutTests/http/tests/resources/
network-simulator.php 152 $newData = "\n".$path;
154 file_put_contents($resourceLogFile, $newData, FILE_APPEND);
  /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;
colldata.cpp 518 CollData *result = NULL, *newData = NULL;
527 newData = new CollData(collator, key, keyLength, status);
528 newEntry = new CollDataCacheEntry(newData);
530 if (U_FAILURE(status) || newData == NULL || newEntry == NULL) {
539 uhash_put(cache, newData->key, newEntry, &status);
544 delete newData;
549 return newData;
563 delete newData;
ucol_elm.cpp 96 uint32_t *newData = (uint32_t *)uprv_realloc(expansions->CEs, 2*expansions->size*sizeof(uint32_t));
97 if(newData == NULL) {
104 expansions->CEs = newData;
    [all...]
  /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/webkit/Source/JavaScriptCore/heap/
MarkStack.h 135 void* newData = allocateStack(m_allocated);
136 memcpy(newData, m_data, oldAllocation);
138 m_data = reinterpret_cast<T*>(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...]
  /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...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HeapSegment.java 319 ByteBuffer newData = ByteBuffer.allocate(newSize * 2);
322 newData.put(mUsageData);
323 mUsageData = 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/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;
  /frameworks/base/tools/aapt/
Images.cpp 565 void * newData = malloc(patchSize);
566 memcpy(newData, data, patchSize);
567 Res_png_9patch* outPatch = inPatch->deserialize(newData);
568 // deserialization is done in place, so outPatch == newData
569 assert(outPatch == newData);
585 free(newData);
    [all...]
  /external/icu4c/common/
normalizer2impl.cpp     [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 582 jint* newData = env->GetIntArrayElements(newArray, 0);
584 memcpy(newData, curData, sizeof(jint)*curCount);
589 curData = newData;

Completed in 988 milliseconds

1 2