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

1 2 3 4 5 6 7

  /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/chromium_org/ppapi/generators/
idl_visitor.py 32 newdata = self.Arrive(node, data)
34 ret = self.Visit(child, newdata)
37 return self.Depart(node, newdata, childdata)
  /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;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 52 newdata = reformat_paragraph(data, format_width)
54 newdata = newdata.split("\n")
61 if not newdata[-1]:
63 newdata = newdata[:-1]
65 newdata = '\n'.join(map(builder, newdata)) + block_suffix
68 newdata = reformat_paragraph(data, maxformatwidth)
70 if newdata != data
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 52 newdata = reformat_paragraph(data, format_width)
54 newdata = newdata.split("\n")
61 if not newdata[-1]:
63 newdata = newdata[:-1]
65 newdata = '\n'.join(map(builder, newdata)) + block_suffix
68 newdata = reformat_paragraph(data, maxformatwidth)
70 if newdata != data
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
M_E_T_A_.py 76 dummy, newData = sstruct.unpack2(METAHeaderFormat, data, self)
79 glyphRecord, newData = sstruct.unpack2(METAGlyphRecordFormat, newData, GlyphRecord())
81 [glyphRecord.offset] = struct.unpack(">H", newData[:2])
82 newData = newData[2:]
84 [glyphRecord.offset] = struct.unpack(">H", newData[:4])
85 newData = newData[4:]
89 newData = data[glyphRecord.offset:
    [all...]
D_S_I_G_.py 45 dummy, newData = sstruct.unpack2(DSIG_HeaderFormat, data, self)
50 sigrec, newData = sstruct.unpack2(DSIG_SignatureFormat, newData, SignatureRecord())
54 dummy, newData = sstruct.unpack2(DSIG_SignatureBlockFormat, data[sigrec.ulOffset:], sigrec)
57 sigrec.pkcs7 = newData[:sigrec.cbSignature]
G_M_A_P_.py 81 dummy, newData = sstruct.unpack2(GMAPFormat, data, self)
82 self.psFontName = tostr(newData[:self.fontNameLength])
84 newData = data[self.recordsOffset:]
87 gmapRecord, newData = sstruct.unpack2(GMAPRecordFormat1, newData, GMAPRecord())
  /external/libsepol/src/
policydb_convert.c 35 policydb_t * policydb, void **newdata, size_t * newlen)
88 /* Update (newdata, newlen) */
89 *newdata = tmp_data;
  /external/lzma/CPP/7zip/UI/Common/
UpdateProduce.h 10 bool NewData;
UpdateProduce.cpp 25 up2.NewData = up2.NewProps = true;
42 up2.NewData = up2.NewProps = false;
UpdateCallback.cpp 71 Int32 *newData, Int32 *newProps, UInt32 *indexInArchive)
76 if (newData != NULL) *newData = BoolToInt(up.NewData);
162 if (!up.NewData)
  /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/chromium_org/chrome/browser/resources/ntp4/
most_visited_page.js 422 * @param {Array} newData The new Most Visited page list.
426 function refreshData(oldData, newData) {
428 newData = newData.slice(0, THUMBNAIL_COUNT);
431 for (var j = 0; j < newData.length; j++) {
432 if (newData[j].pinned) {
433 oldData[j] = newData[j];
436 // Mark the newData page as 'used' so we don't try to re-use it.
437 newData[j].used = true;
441 // Look through old pages; if they exist in the newData list, keep the
    [all...]
suggestions_page.js 402 * @param {Array} newData The new Suggestions page list.
406 function refreshData(oldData, newData) {
408 newData = newData.slice(0, THUMBNAIL_COUNT);
411 for (var i = 0; i < newData.length; i++) {
412 if (newData[i].pinned) {
413 oldData[i] = newData[i];
416 // Mark the newData page as 'used' so we don't try to re-use it.
417 newData[i].used = true;
421 // Look through old pages; if they exist in the newData list, keep the
    [all...]
  /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;
  /external/chromium_org/third_party/WebKit/ManualTests/
database-threading-stress-test.html 24 function newData()
37 newData();
  /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/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/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 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...]
  /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/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;

Completed in 1394 milliseconds

1 2 3 4 5 6 7