/external/lzma/CPP/7zip/UI/Common/ |
UpdateProduce.h | 10 bool NewData;
23 NewData = NewProps = false;
33 NewData(false),
|
UpdateProduce.cpp | 24 up2.NewData = up2.NewProps = true;
55 up2.NewData = up2.NewProps = false;
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
ByteArrayRingBuffer.java | 44 * Adds |newData| to the ring buffer. Removes existing entries to make room, if necessary. 46 * <p><b>Note:</b> will fail if |newData| itself exceeds the size limit for this buffer. 49 * @param newData data to be added to the ring 52 public boolean appendBuffer(byte[] newData) { 53 pruneToSize(mMaxBytes - newData.length); 54 if (mBytesUsed + newData.length > mMaxBytes) { 58 mArrayList.add(newData); 59 mBytesUsed += newData.length;
|
/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;
|
/libcore/ojluni/src/main/java/sun/security/util/ |
DerIndefLenConverter.java | 51 private byte[] data, newData; 140 newData[newDataPos++] = (byte)tag; 190 System.arraycopy(lenBytes, 0, newData, newDataPos, 212 newData[newDataPos++] = (byte)curLen; 215 newData[newDataPos++] = (byte)0x81; 216 newData[newDataPos++] = (byte)curLen; 219 newData[newDataPos++] = (byte)0x82; 220 newData[newDataPos++] = (byte)(curLen >> 8); 221 newData[newDataPos++] = (byte)curLen; 224 newData[newDataPos++] = (byte)0x83 [all...] |
/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;
|
/external/skia/src/core/ |
SkCachedData.h | 40 virtual void onDataChange(void* oldData, void* newData) {} 70 void setData(void* newData) { 71 if (newData != fData) { 73 this->onDataChange(fData, newData); 74 fData = newData;
|
SkMipMap.h | 40 void onDataChange(void* oldData, void* newData) override { 41 fLevels = (Level*)newData; // could be nullptr
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/ |
BsPatch.java | 60 * Applies a patch from |patchData| to the data in |oldData|, writing the result to |newData|. 63 * @param newData stream to write the new artifact to 69 RandomAccessFile oldData, OutputStream newData, InputStream patchData) 72 newData = new BufferedOutputStream(newData, OUTPUT_STREAM_BUFFER_SIZE); 74 applyPatchInternal(oldData, newData, patchData); 76 newData.flush(); 85 final OutputStream newData, 114 // Offsets into |oldData| and |newData|. 121 // from |oldData| to |newData| by applying byte-by-byte addends. The addend bytes ar [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...] |
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/ |
RandomAccessFile.java | 33 StringBuilder newData; 150 if (newData == null) { 154 // System.out.println("consolidate(); ndp: " + newDataPos + " nd-len: " + newData.length()); 166 int p2 = newDataPos + newData.length(); 167 data = data.substring(0, newDataPos) + newData.toString() + (p2 < data.length() ? data.substring(p2) : ""); 168 newData = null; 298 if (newData == null) { 300 newData = new StringBuilder(); 302 } else if (newDataPos + newData.length() != pos) { 305 newData = new StringBuilder() [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/ |
ParallelArray.java | 77 float[] newData = new float[strideSize * requiredCapacity]; 78 System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); 79 super.data = data = newData; 111 int[] newData = new int[strideSize * requiredCapacity]; 112 System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)); 113 super.data = data = newData; 148 T[] newData = (T[]) ArrayReflection.newInstance(componentType, strideSize * requiredCapacity); 149 System.arraycopy(data, 0, newData, 0, Math.min(data.length, newData.length)) [all...] |
/external/selinux/libsepol/src/ |
policydb_convert.c | 35 policydb_t * policydb, void **newdata, size_t * newlen) 88 /* Update (newdata, newlen) */ 89 *newdata = tmp_data;
|
/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);
|
/bootable/recovery/applypatch/ |
bsdiff.cpp | 159 static off_t matchlen(u_char *olddata,off_t oldsize,u_char *newdata,off_t newsize) 164 if(olddata[i]!=newdata[i]) break; 170 u_char *newdata,off_t newsize,off_t st,off_t en,off_t *pos) 175 x=matchlen(old+I[st],oldsize-I[st],newdata,newsize); 176 y=matchlen(old+I[en],oldsize-I[en],newdata,newsize); 188 if(memcmp(old+I[x],newdata,MIN(oldsize-I[x],newsize))<0) { 189 return search(I,old,oldsize,newdata,newsize,x,en,pos); 191 return search(I,old,oldsize,newdata,newsize,st,x,pos); 215 // - old, oldsize, newdata, newsize are arguments; we don't load this 216 // data from files. old and newdata are owned by the caller; w [all...] |
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
ReportAPI.java | 45 APIData newData; 132 ReportAPI(APIData oldData, APIData newData) { 134 this.newData = newData; 137 removed.removeAll(newData.set); 139 added = (TreeSet<APIInfo>)newData.set.clone(); 198 tempAdded.addAll(newData.set); 284 String title = "ICU4J API Comparison: " + oldData.name + " with " + newData.name; 313 pw.println("<h2>Withdrawn, Deprecated, or Obsoleted in " + newData.name + "</h2>"); 315 pw.println("<h2>Deprecated or Obsoleted in " + newData.name + "</h2>") [all...] |
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/ |
BsPatchTest.java | 86 ByteArrayOutputStream newData = new ByteArrayOutputStream(); 87 BsPatch.transformBytes(patchInput.length, patchInputStream, oldData, newData, buffer1, buffer2); 88 byte[] actual = newData.toByteArray(); 113 ByteArrayOutputStream newData = new ByteArrayOutputStream(); 116 patchInput.length, patchInputStream, oldData, newData, buffer1, buffer2); 132 ByteArrayOutputStream newData = new ByteArrayOutputStream(); 135 patchInput.length + 1, patchInputStream, oldData, newData, buffer1, buffer2); 171 ByteArrayOutputStream newData = new ByteArrayOutputStream(); 173 BsPatch.applyPatch(new RandomAccessFile(oldFile, "r"), newData, patchIn); 194 ByteArrayOutputStream newData = new ByteArrayOutputStream() [all...] |
/hardware/intel/common/libmix/mix_common/src/ |
mixparams.c | 196 * @newdata: pointer to new object 200 * Either @newdata and the value pointed to by @olddata may be NULL. 202 void mix_params_replace (MixParams **olddata, MixParams *newdata) 210 if (olddata_val == newdata) 213 if (newdata) 214 mix_params_ref (newdata); 216 while (!g_atomic_pointer_compare_and_exchange ((gpointer *) olddata, olddata_val, newdata))
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
OpenTypeTableWriter.java | 92 short[] newData = new short[data.length + 512]; 94 System.arraycopy(data, 0, newData, 0, data.length); 96 data = newData;
|
/packages/apps/Camera2/src/com/android/camera/data/ |
PhotoItemFactory.java | 57 PhotoItem newData = null; 62 newData = get(c); 67 return newData;
|
VideoItemFactory.java | 61 VideoItem newData = null; 66 newData = get(c); 71 return newData;
|