HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 301 - 325 of 4343) sorted by null

<<11121314151617181920>>

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/
SoftAMRNBEncoder.cpp 6 * You may obtain a copy of the License at
301 size_t copy = numBytesPerInputFrame - mInputSize; local
302 if (copy > inHeader->nFilledLen) {
303 copy = inHeader->nFilledLen;
310 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
311 mInputSize += copy;
313 inHeader->nOffset += copy;
314 inHeader->nFilledLen -= copy;
319 (copy * 1000000ll / kSampleRate) / sizeof(int16_t);
  /packages/apps/Email/src/org/apache/james/mime4j/message/
MemoryTextBody.java 8 * with the License. You may obtain a copy of the License at *
65 IOUtils.copy(is, out);
116 IOUtils.copy(new ByteArrayInputStream(tempFile), out);
TempFileTextBody.java 8 * with the License. You may obtain a copy of the License at *
65 IOUtils.copy(is, out);
115 IOUtils.copy(tempFile.getInputStream(), out);
  /build/tools/apicheck/
Android.mk 5 # You may obtain a copy of the License at
18 # We use copy-file-to-new-target so that the installed
35 @echo "Copy: $(PRIVATE_MODULE) ($@)"
36 $(copy-file-to-new-target)
  /cts/tools/cts-api-coverage/
Android.mk 5 # You may obtain a copy of the License at
17 # We use copy-file-to-new-target so that the installed
33 @echo "Copy: $(PRIVATE_MODULE) ($@)"
34 $(copy-file-to-new-target)
  /cts/tools/cts-java-scanner/
Android.mk 5 # You may obtain a copy of the License at
17 # We use copy-file-to-new-target so that the installed
33 @echo "Copy: $(PRIVATE_MODULE) ($@)"
34 $(copy-file-to-new-target)
  /cts/tools/cts-native-scanner/
Android.mk 5 # You may obtain a copy of the License at
17 # We use copy-file-to-new-target so that the installed
33 @echo "Copy: $(PRIVATE_MODULE) ($@)"
34 $(copy-file-to-new-target)
  /cts/tools/cts-xml-generator/
Android.mk 5 # You may obtain a copy of the License at
17 # We use copy-file-to-new-target so that the installed
33 @echo "Copy: $(PRIVATE_MODULE) ($@)"
34 $(copy-file-to-new-target)
  /dalvik/tools/dexdeps/
Android.mk 5 # You may obtain a copy of the License at
17 # We use copy-file-to-new-target so that the installed
33 @echo "Copy: $(PRIVATE_MODULE) ($@)"
34 $(copy-file-to-new-target)
  /dalvik/vm/alloc/
Alloc.cpp 6 * You may obtain a copy of the License at
199 * Create a copy of an object, for Object.clone().
222 Object* copy = (Object*)dvmMalloc(size, flags); local
223 if (copy == NULL)
226 DVM_OBJECT_INIT(copy, clazz);
228 /* Copy instance data. We assume memcpy copies by words. */
229 memcpy((char*)copy + offset, (char*)obj + offset, size - offset);
233 dvmSetFinalizable(copy);
238 return copy;
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 6 * You may obtain a copy of the License at
148 W extends Appendable & Closeable> long copy(InputSupplier<R> from,
155 long count = copy(in, out);
177 public static <R extends Readable & Closeable> long copy(
182 long count = copy(in, to);
199 public static long copy(Readable from, Appendable to) throws IOException {
249 copy(r, sb);
  /external/libvpx/vp8/encoder/arm/neon/
vp8_memcpy_neon.asm 27 mov r12, r2, lsr #8 ;copy 256 bytes data at one time
33 vst1.8 {q0, q1}, [r0]! ;copy to dst_ptr
55 ands r3, r2, #0xff ;extra copy
  /external/openssh/regress/
forwarding.sh 29 somehost cat $DATA > $OBJ/ls.copy
30 test -f $OBJ/ls.copy || fail "failed copy $DATA"
31 cmp $DATA $OBJ/ls.copy || fail "corrupted copy of $DATA"
  /external/smali/baksmali/
Android.mk 5 # You may obtain a copy of the License at
57 # copy baksmali script
70 @echo "Copy: $(PRIVATE_MODULE) ($@)"
71 $(copy-file-to-new-target)
  /external/webkit/Source/WebCore/fileapi/
FileThreadTask.h 192 CrossThreadCopier<P1>::copy(parameter1));
205 CrossThreadCopier<P1>::copy(parameter1),
206 CrossThreadCopier<P2>::copy(parameter2));
220 CrossThreadCopier<P1>::copy(parameter1),
221 CrossThreadCopier<P2>::copy(parameter2),
222 CrossThreadCopier<P3>::copy(parameter3));
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCMainThreadTask.h 185 CrossThreadCopier<P1>::copy(parameter1));
198 CrossThreadCopier<P1>::copy(parameter1),
199 CrossThreadCopier<P2>::copy(parameter2));
213 CrossThreadCopier<P1>::copy(parameter1),
214 CrossThreadCopier<P2>::copy(parameter2),
215 CrossThreadCopier<P3>::copy(parameter3));
  /frameworks/base/libs/hwui/
SkiaShader.h 6 * You may obtain a copy of the License at
61 virtual SkiaShader* copy() = 0;
146 SkiaShader* copy();
177 SkiaShader* copy();
201 SkiaShader* copy();
226 SkiaShader* copy();
242 SkiaShader* copy();
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleNativeHeap.java 6 * You may obtain a copy of the License at
125 byte[] copy = new byte[data.limit()];
126 data.get(copy);
131 ByteBuffer buffer = ByteBuffer.wrap(copy);
204 byte[] copy = new byte[data.limit()];
205 data.get(copy);
207 ByteBuffer buffer = ByteBuffer.wrap(copy);
  /sdk/files/
post_tools_install.bat 6 rem You may obtain a copy of the License at
39 copy /V /Y "%src%" "%dst%"
47 copy /V /Y "%src%" "%dst%"
  /external/strace/
mem.c 640 struct modify_ldt_ldt_s copy; local
644 || umove(tcp, tcp->u_arg[1], &copy) == -1)
647 tprintf(", {entry_number:%d, ", copy.entry_number);
651 print_ldt_entry(&copy);
663 struct modify_ldt_ldt_s copy; local
665 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
666 if (copy.entry_number == -1)
668 copy.entry_number);
673 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
674 tprintf("%d, ", copy.entry_number)
692 struct modify_ldt_ldt_s copy; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
set_operations.h 20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
103 return std::copy(c, d, std::copy(a, b, r));
136 { return std::copy(c, d, out); }
140 { return std::copy(a, b, out); }
177 return std::copy(a, b, r);
208 { return std::copy(a, b, out); }
313 return std::copy(c, d, std::copy(a, b, r))
    [all...]
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 90 * Constructs a copy of <code>method_info</code> structure. Class names
142 invisibleAnnotations = invisibleAnnotations.copy(cp, null);
149 visibleAnnotations = visibleAnnotations.copy(cp, null);
156 parameterInvisibleAnnotations = parameterInvisibleAnnotations.copy(cp, null);
163 parameterVisibleAnnotations = parameterVisibleAnnotations.copy(cp, null);
179 signature = signature.copy(cp, null);
513 attribute.add(eattr.copy(destCp, classnames));
517 attribute.add(cattr.copy(destCp, classnames));
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeData.java 62 public abstract TypeData copy(); method in class:TypeData
101 public TypeData copy() { method in class:TypeData.BasicType
323 private String name; // dot separated. null if this object is a copy of another.
329 public TypeData copy() { method in class:TypeData.ClassName
348 public TypeData copy() { method in class:TypeData.NullType
398 public TypeData copy() { method in class:TypeData.ArrayElement
469 return copy();
474 public TypeData copy() { method in class:TypeData.UninitData
  /external/qemu/
cutils.c 6 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
245 size_t copy; local
249 copy = count;
250 if (copy > qiov->iov[i].iov_len)
251 copy = qiov->iov[i].iov_len;
252 memcpy(qiov->iov[i].iov_base, p, copy);
253 p += copy;
254 count -= copy;
  /external/skia/src/animator/
SkDrawColor.cpp 137 SkDrawColor* copy = new SkDrawColor(); local
138 copy->color = color;
139 copy->fHue = fHue;
140 copy->fSaturation = fSaturation;
141 copy->fValue = fValue;
142 copy->fDirty = fDirty;
143 return copy;

Completed in 2432 milliseconds

<<11121314151617181920>>