/external/libavc/common/arm/ |
ih264_default_weighted_pred_a9q.s | 51 @* stores it in the destination block. 60 @* UWORD8 pointer to the destination where the output block is stored. 69 @* Stride of the destination buffer 136 vst1.32 d0[0], [r2], r5 @load row 1 in destination 137 vst1.32 d0[1], [r2], r5 @load row 2 in destination 139 vst1.32 d1[0], [r2], r5 @load row 3 in destination 140 vst1.32 d1[1], [r2], r5 @load row 4 in destination 160 vst1.8 d0, [r2], r5 @load row 1 in destination 162 vst1.8 d1, [r2], r5 @load row 2 in destination 163 vst1.8 d2, [r2], r5 @load row 3 in destination [all...] |
/external/libavc/common/armv8/ |
ih264_default_weighted_pred_av8.s | 51 //* stores it in the destination block. 60 //* UWORD8 pointer to the destination where the output block is stored. 69 //* Stride of the destination buffer 133 st1 {v0.s}[0], [x2], x5 //load row 1 in destination 134 st1 {v0.s}[1], [x2], x5 //load row 2 in destination 136 st1 {v1.s}[0], [x2], x5 //load row 3 in destination 137 st1 {v1.s}[1], [x2], x5 //load row 4 in destination 155 st1 {v0.8b}, [x2], x5 //load row 1 in destination 157 st1 {v1.8b}, [x2], x5 //load row 2 in destination 158 st1 {v2.8b}, [x2], x5 //load row 3 in destination [all...] |
/frameworks/base/rs/java/android/renderscript/ |
ScriptIntrinsicBlend.java | 57 * @param aout The destination buffer 67 * @param aout The destination buffer 88 * @param aout The destination buffer 98 * @param aout The destination buffer 120 * @param aout The destination buffer 132 * @param aout The destination buffer 152 * @param aout The destination buffer 162 * @param aout The destination buffer 182 * @param aout The destination buffer 192 * @param aout The destination buffe [all...] |
/external/icu/icu4c/source/tools/gensprep/ |
gensprep.8.in | 26 .BI "\-d\fP, \fB\-\-destdir" " destination" 60 .BI "\-d\fP, \fB\-\-destdir" " destination" 61 Set the destination directory to 62 .IR destination . 63 The default destination directory is specified by the environment variable
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
ColorSpaceTransform.java | 149 * Copy the {@link Rational} elements in row-major order from this matrix into the destination. 151 * @param destination 157 * If {@code destination} was {@code null} 159 * If there's not enough room to write the elements at the specified destination and 162 public void copyElements(Rational[] destination, int offset) { 164 checkNotNull(destination, "destination must not be null"); 165 if (destination.length - offset < COUNT) { 166 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements"); 173 destination[i + offset] = new Rational(numerator, denominator) [all...] |
BlackLevelPattern.java | 74 * Copy the ColorChannel offsets into the destination vector. 78 * @param destination an array big enough to hold at least {@value #COUNT} elements after the 83 * @throws ArrayIndexOutOfBoundsException if the destination vector is too small. 84 * @throws NullPointerException if the destination is null. 86 public void copyTo(int[] destination, int offset) { 87 checkNotNull(destination, "destination must not be null"); 91 if (destination.length - offset < COUNT) { 92 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements"); 95 destination[offset + i] = mCfaOffsets[i] [all...] |
/system/media/audio_utils/include/audio_utils/ |
format.h | 28 * dst Destination buffer 29 * dst_format Destination buffer format 49 * The destination and source buffers must be completely separate if the destination 71 * dst_mask Bit mask corresponding to destination channels present
|
primitives.h | 52 * dst Destination buffer 55 * The destination and source buffers must either be completely separate (non-overlapping), or 62 * dst Destination buffer 65 * The destination and source buffers must either be completely separate (non-overlapping), or 73 * dst Destination buffer 76 * The destination and source buffers must either be completely separate (non-overlapping), or 84 * dst Destination buffer 87 * The destination and source buffers must either be completely separate (non-overlapping), or 97 * dst Destination buffer 100 * The destination and source buffers must either be completely separate (non-overlapping), o [all...] |
/external/v8/src/compiler/x64/ |
code-generator-x64.cc | 874 InstructionOperand* destination) { 876 // Dispatch on the source and destination operand kinds. Not all 879 DCHECK(destination->IsRegister() || destination->IsStackSlot()); 881 if (destination->IsRegister()) { 882 __ movq(g.ToRegister(destination), src); 884 __ movq(g.ToOperand(destination), src); 887 DCHECK(destination->IsRegister() || destination->IsStackSlot()); 889 if (destination->IsRegister()) [all...] |
/external/v8/test/cctest/compiler/ |
test-gap-resolver.cc | 22 if (!it->IsRedundant()) write(it->destination(), copy.read(it->source())); 66 InstructionOperand destination(it->second.first, it->second.second); 67 os << MoveOperands(&source, &destination); 80 InstructionOperand* destination) OVERRIDE { 82 moves.push_back(MoveOperands(source, destination)); 87 InstructionOperand* destination) OVERRIDE { 89 moves.push_back(MoveOperands(source, destination)); 90 moves.push_back(MoveOperands(destination, source)); 116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) { 117 parallel_move->AddMove(mo.source(), mo.destination(), main_zone()) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
stralign.h | 32 PUWSTR ua_wcscpy(PUWSTR Destination,PCUWSTR Source); 34 __CRT_INLINE PUWSTR ua_wcscpy(PUWSTR Destination,PCUWSTR Source) { return wcscpy(Destination,Source); } 49 PUWSTR __cdecl uaw_wcscpy(PUWSTR Destination,PCUWSTR Source); 111 PUWSTR ua_wcscpy(PUWSTR Destination,PCUWSTR Source); 125 if(WSTR_ALIGNED(String)) return wcscpy((PWSTR)Destination,(PCWSTR)Source); 126 return uaw_wcscpy(Destination,Source); 134 __CRT_INLINE PUWSTR ua_wcscpy(PUWSTR Destination,PCUWSTR Source) { 135 if(WSTR_ALIGNED(Source) && WSTR_ALIGNED(Destination)) 136 return wcscpy((PWSTR)Destination,(PCWSTR)Source) [all...] |
/external/clang/test/Sema/ |
warn-strncat-size.c | 33 strncat(dest, src, sizeof(src)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 35 strncat(dest, src, sizeof(src) - 1); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 37 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 39 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 43 strncat(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 70 strncat(z, str, sizeof(str)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
|
builtins.c | 220 strlcpy(buf, b, sizeof(b)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} \\ 221 // expected-note {{change size argument to be the size of the destination}} 222 __builtin___strlcpy_chk(buf, b, sizeof(b), __builtin_object_size(buf, 0)); // expected-warning {{size argument in '__builtin___strlcpy_chk' call appears to be size of the source; expected the size of the destination}} \ 223 // expected-note {{change size argument to be the size of the destination}} \ 224 // expected-warning {{'__builtin___strlcpy_chk' will always overflow destination buffer}} 226 strlcat(buf, b, sizeof(b)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} \ 227 // expected-note {{change size argument to be the size of the destination}} 229 __builtin___strlcat_chk(buf, b, sizeof(b), __builtin_object_size(buf, 0)); // expected-warning {{size argument in '__builtin___strlcat_chk' call appears to be size of the source; expected the size of the destination}} \ 230 // expected-note {{change size argument to be the size of the destination}} \ 231 // expected-warning {{'__builtin___strlcat_chk' will always overflow destination buffer} [all...] |
/external/kernel-headers/original/uapi/linux/ |
ip_vs.h | 31 * Destination Server Flags 114 /* Connection flags from destination that can be changed by user space */ 146 /* destination server address */ 152 int weight; /* destination weight */ 214 __be32 addr; /* destination address */ 217 int weight; /* destination weight */ 302 IPVS_CMD_NEW_DEST, /* add destination */ 303 IPVS_CMD_SET_DEST, /* modify destination */ 304 IPVS_CMD_DEL_DEST, /* delete destination */ 305 IPVS_CMD_GET_DEST, /* get destination info * [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
AttachmentActionHandler.java | 92 public void showAttachment(int destination) { 100 (destination == AttachmentDestination.CACHE || 101 mAttachment.destination == destination)) { 105 startDownloadingAttachment(destination); 113 public void startDownloadingAttachment(int destination) { 114 startDownloadingAttachment(destination, UIProvider.AttachmentRendition.BEST, 0, false); 118 int destination, int rendition, int additionalPriority, boolean delayDownload) { 120 mAttachment, destination, rendition, additionalPriority, delayDownload); 124 Attachment attachment, int destination, int rendition, int additionalPriority [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
ip_vs.h | 25 * Destination Server Flags 103 /* Connection flags from destination that can be changed by user space */ 135 /* destination server address */ 141 int weight; /* destination weight */ 203 __be32 addr; /* destination address */ 206 int weight; /* destination weight */ 291 IPVS_CMD_NEW_DEST, /* add destination */ 292 IPVS_CMD_SET_DEST, /* modify destination */ 293 IPVS_CMD_DEL_DEST, /* delete destination */ 294 IPVS_CMD_GET_DEST, /* get destination info * [all...] |
/external/v8/src/compiler/arm64/ |
code-generator-arm64.cc | 721 InstructionOperand* destination) { 723 // Dispatch on the source and destination operand kinds. Not all 726 DCHECK(destination->IsRegister() || destination->IsStackSlot()); 728 if (destination->IsRegister()) { 729 __ Mov(g.ToRegister(destination), src); 731 __ Str(src, g.ToMemOperand(destination, masm())); 735 DCHECK(destination->IsRegister() || destination->IsStackSlot()); 736 if (destination->IsRegister()) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
ip_vs.h | 24 * Destination Server Flags 113 /* destination server address */ 119 int weight; /* destination weight */ 182 __be32 addr; /* destination address */ 185 int weight; /* destination weight */ 270 IPVS_CMD_NEW_DEST, /* add destination */ 271 IPVS_CMD_SET_DEST, /* modify destination */ 272 IPVS_CMD_DEL_DEST, /* delete destination */ 273 IPVS_CMD_GET_DEST, /* get destination info */ 297 IPVS_CMD_ATTR_DEST, /* nested destination attribute * [all...] |
/external/libpng/ |
CMakeLists.txt | 284 RUNTIME DESTINATION bin 285 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} 286 ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) 294 DESTINATION ${CMAKE_INSTALL_LIBDIR}) 301 DESTINATION ${CMAKE_INSTALL_LIBDIR}) 310 DESTINATION ${CMAKE_INSTALL_LIBDIR}) 316 install(FILES ${libpng_public_hdrs} DESTINATION include) 317 install(FILES ${libpng_public_hdrs} DESTINATION include/${PNGLIB_NAME}) 321 install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config DESTINATION bin) 323 DESTINATION bin [all...] |
/external/clang/test/SemaObjC/ |
arc-non-pod-memaccess.m | 24 memcpy(sip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to ownership-qualified type}} \ 26 memcpy(wip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to ownership-qualified type}} \ 28 memcpy(aip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to ownership-qualified type}} \ 40 memmove(sip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ownership-qualified type}} \ 42 memmove(wip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ownership-qualified type}} \ 44 memmove(aip, ptr, 17); // expected-warning{{destination for this 'memmove' call is a pointer to ownership-qualified type}} \
|
/external/icu/icu4c/source/test/intltest/ |
nptrans.h | 73 * @param dest Pointer to the destination buffer to receive the output 74 * @param destCapacity The capacity of destination array 80 * @return The number of UChars in the destination buffer 94 * @param dest Pointer to the destination buffer to receive the output 95 * @param destCapacity The capacity of destination array 101 * @return The number of UChars in the destination buffer
|
/external/libavc/encoder/ |
ih264e_half_pel.h | 69 * UWORD8 pointer to the destination 75 * integer destination stride 119 * UWORD8 pointer to the destination (Horizontal filtered output) 122 * UWORD8 pointer to the destination (output after applying vertical filter to 129 * integer destination stride of pu1_dst 135 * integer destination stride of pi16_pred1
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
CircularImageView.java | 27 private final RectF destination; field in class:CircularImageView 44 destination = new RectF(); 80 destination.set(getPaddingLeft(), getPaddingTop(), getWidth() - getPaddingRight(), 83 drawBitmapWithCircleOnCanvas(bitmap, canvas, source, destination); 88 * mask. Only draws a circle with diameter equal to the destination width. 93 * @param dest The destination bound on the canvas.
|
/external/compiler-rt/cmake/Modules/ |
SanitizerUtils.cmake | 31 DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) 38 DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) 42 install(FILES ${libfile}.syms DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
|
/frameworks/av/drm/mediadrm/plugins/clearkey/ |
AesCtrDecryptor.cpp | 31 uint8_t* destination, 49 memcpy(destination + offset, source + offset, 55 AES_ctr128_encrypt(source + offset, destination + offset,
|