/external/skia/include/core/ |
SkImageGenerator.h | 23 * the generator. If it succeeds, it will modify destination 29 * installed into destination is destroyed, it will call 33 * @param destination Upon success, this bitmap will be 38 SK_API bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap* destination); 41 * On success, installs a discardable pixelref into destination, based on encoded data. 44 SK_API bool SkInstallDiscardablePixelRef(SkData* encoded, SkBitmap* destination);
|
/hardware/qcom/display/msm8084/libcopybit/ |
copybit.h | 57 /* Default blit destination is offline buffer */ 203 * @param dst is the destination image 230 * @param dst is the destination image 232 * @param dst_rect is the destination rectangle 249 * @param dst is destination image 250 * @param rect is destination rectangle
|
/hardware/qcom/display/msm8226/libcopybit/ |
copybit.h | 57 /* Default blit destination is offline buffer */ 203 * @param dst is the destination image 230 * @param dst is the destination image 232 * @param dst_rect is the destination rectangle 249 * @param dst is destination image 250 * @param rect is destination rectangle
|
/hardware/qcom/display/msm8994/libcopybit/ |
copybit.h | 60 /* Default blit destination is offline buffer */ 206 * @param dst is the destination image 233 * @param dst is the destination image 235 * @param dst_rect is the destination rectangle 252 * @param dst is destination image 253 * @param rect is destination rectangle
|
/libcore/luni/src/main/java/java/util/zip/ |
InflaterOutputStream.java | 41 * implementation-defined default internal buffer size. {@code out} is a destination 44 * @param out the destination {@code OutputStream} 52 * implementation-defined default internal buffer size. {@code out} is a destination 55 * @param out the destination {@code OutputStream} 64 * given internal buffer size. {@code out} is a destination 67 * @param out the destination {@code OutputStream}
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
Action.java | 161 private void drawCenteredImage(Bitmap source, Bitmap destination, boolean scale) { 162 int minSide = Math.min(destination.getWidth(), destination.getHeight()); 166 float dx = (destination.getWidth() - source.getWidth() * scaleFactor) / 2.0f; 167 float dy = (destination.getHeight() - source.getHeight() * scaleFactor) / 2.0f; 174 Canvas canvas = new Canvas(destination);
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
ContactListItemData.java | 58 final String destination = cursor.getString(ContactUtil.INDEX_PHONE_EMAIL); local 78 DisplayNameSources.STRUCTURED_NAME, destination, destinationType, destinationLabel, 84 * optional styled name & destination for showing bold search match. 108 final CharSequence destination = mStyledDestination != null ? local 110 return destination == null ? "" : destination;
|
/external/protobuf/src/google/protobuf/ |
extension_set_unittest.cc | 343 unittest::TestAllTypes destination; local 351 EXPECT_TRUE(destination.ParseFromString(data)); 352 TestUtil::ExpectAllFieldsSet(destination); 364 unittest::TestAllTypes destination; local 375 EXPECT_TRUE(destination.ParseFromString(data)); 376 TestUtil::ExpectAllFieldsSet(destination); 387 unittest::TestPackedTypes destination; local 395 EXPECT_TRUE(destination.ParseFromString(data)); 396 TestUtil::ExpectPackedFieldsSet(destination); 408 unittest::TestPackedTypes destination; local 426 unittest::TestAllExtensions destination; local 439 unittest::TestPackedExtensions destination; local 450 unittest::TestUnpackedExtensions destination; local 471 unittest::TestPackedExtensions destination; local [all...] |
/art/compiler/optimizing/ |
code_generator_arm.cc | 711 void CodeGeneratorARM::Move32(Location destination, Location source) { 712 if (source.Equals(destination)) { 715 if (destination.IsRegister()) { 717 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>()); 719 __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>()); 721 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex()); 723 } else if (destination.IsFpuRegister()) { 725 __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>()); 727 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>()); 729 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex()) 3576 Location destination = move->GetDestination(); local 3708 Location destination = move->GetDestination(); local 3774 LOG(FATAL) << "Unimplemented" << source << " <-> " << destination; local [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
AsyncChannel.java | 43 * server/destination. And the server uses the replyToMessage methods. 44 * In this usage model there is no need for the destination to 59 * <p>A second usage model is where the server/destination needs to know 97 * means that the channel can be used to send commends to the destination 98 * but the destination is unaware that the channel exists. The first 99 * command sent to the destination is typically CMD_CHANNEL_FULL_CONNECTION if 112 * This is used to initiate a long term connection with the destination and 113 * typically the destination will reply with CMD_CHANNEL_FULLY_CONNECTED. 120 * Command typically sent after the destination receives a CMD_CHANNEL_FULL_CONNECTION. 124 * : All other values signify the destination rejected the connectio [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_blit.c | 441 * to destination buffer. 451 * @param[in] dst_bo destination radeon buffer object 452 * @param[in] dst_offset offset of the destination image in the @a dst_bo 453 * @param[in] dst_mesaformat destination image format 454 * @param[in] dst_pitch aligned destination image width 455 * @param[in] dst_width destination image width 456 * @param[in] dst_height destination image height 457 * @param[in] dst_x_offset x offset in the destination image 458 * @param[in] dst_y_offset y offset in the destination image 495 * or write outside of the destination buffer [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_blit.c | 319 * to destination buffer. 329 * @param[in] dst_bo destination radeon buffer object 330 * @param[in] dst_offset offset of the destination image in the @a dst_bo 331 * @param[in] dst_mesaformat destination image format 332 * @param[in] dst_pitch aligned destination image width 333 * @param[in] dst_width destination image width 334 * @param[in] dst_height destination image height 335 * @param[in] dst_x_offset x offset in the destination image 336 * @param[in] dst_y_offset y offset in the destination image 373 * or write outside of the destination buffer [all...] |
/frameworks/base/core/java/android/hardware/camera2/params/ |
LensShadingMap.java | 177 * Copy all gain factors in row-major order from this lens shading map into the destination. 181 * @param destination 187 * If {@code destination} was {@code null} 191 * If there's not enough room to write the elements at the specified destination and 196 public void copyGainFactors(final float[] destination, final int offset) { 198 checkNotNull(destination, "destination must not be null"); 199 if (destination.length + offset < getGainFactorCount()) { 200 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements"); 203 System.arraycopy(mElements, /*srcPos*/0, destination, offset, getGainFactorCount()) [all...] |
TonemapCurve.java | 203 * Copy the color curve for a single color channel from this tonemap curve into the destination. 213 * @param destination 219 * If {@code destination} was {@code null} 223 * If there's not enough room to write the elements at the specified destination and 232 public void copyColorCurve(int colorChannel, float[] destination, 235 checkNotNull(destination, "destination must not be null"); 237 if (destination.length + offset < getPointCount(colorChannel) * POINT_SIZE) { 238 throw new ArrayIndexOutOfBoundsException("destination too small to fit elements"); 242 System.arraycopy(curve, /*srcPos*/0, destination, offset, curve.length) [all...] |
/external/vboot_reference/utility/ |
efidecompress.c | 617 Decode the source data and put the resulting data into the destination buffer. 693 DstSize - The size of destination buffer. 698 EFI_SUCCESS - The size of destination buffer and the size of scratch buffer are successull retrieved. 720 IN OUT VOID *Destination, 736 Destination - The destination buffer to store the decompressed data 737 DstSize - The size of destination buffer. 761 Dst = Destination; 861 DstSize - The size of destination buffer. 866 EFI_SUCCESS - The size of destination buffer and the size of scratch buffer are successull retrieved [all...] |
/frameworks/base/graphics/java/android/graphics/pdf/ |
PdfRenderer.java | 321 * whole page to the destination clip if provided or the destination bitmap if no 326 * destination bitmap contains a portion of the image, for example when zooming. 331 * <strong>Note: </strong> The destination bitmap format must be 340 * @param destination Destination bitmap to which to render. 348 public void render(@NonNull Bitmap destination, @Nullable Rect destClip, 350 if (destination.getConfig() != Config.ARGB_8888) { 356 || destClip.right > destination.getWidth() 357 || destClip.bottom > destination.getHeight()) [all...] |
/external/compiler-rt/cmake/Modules/ |
AddCompilerRT.cmake | 73 ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR} 74 LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR} 75 RUNTIME DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) 97 ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) 119 LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) 206 install(FILES ${file_name} DESTINATION ${COMPILER_RT_INSTALL_PATH}) 219 DESTINATION ${COMPILER_RT_INSTALL_PATH}/bin)
|
/external/iproute2/man/man8/ |
ip-xfrm.8 | 389 is specified by a source address, destination address, 446 address, the destination address, the network device, and/or 453 protocols, the source and destination port can optionally be specified. 471 .RI "using source port " SPORT ", destination port " DPORT 493 address, the destination address, the network device, and/or 500 protocols, the source and destination port can optionally be specified. 549 is specified by a source address, destination address,
|
/external/skia/src/utils/ |
SkTFitsIn.h | 24 * that source values are in the range of the Destination. 110 * the implementation of which is tailored for the source and destination types. 127 * the implementation of which is tailored for the source and destination types. 144 * the implementation of which is tailored for the source and destination types. 162 * the implementation of which is tailored for the source and destination types. 180 * the implementation of which is tailored for the source and destination types. 201 /** Returns true if the integer source value 's' will fit in the integer destination type 'D'. */
|
/external/vboot_reference/host/lib21/include/ |
host_key2.h | 62 * @param key_ptr Destination for newly allocated key; this must be 75 * @param key_ptr Destination for newly allocated key; this must be 89 * @param key_ptr Destination for newly allocated key; this must be 119 * @param key_ptr Destination for pointer to key. The key is statically 133 * @param key_ptr Destination for newly allocated key; this must be 166 * @param key_ptr Destination for newly allocated key; this must be 209 * @param key Destination for key data.
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
HdmiCecMessage.java | 26 * source and destination address, command (or opcode), and optional parameters. 40 public HdmiCecMessage(int source, int destination, int opcode, byte[] params) { 42 mDestination = destination; 58 * Return the destination address field of the message. It is the logical address 61 * @return destination address 69 * tells the destination device what to do. 80 * the action for the destination device to take.
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoCarousel.java | 186 ImageView destination = getBackface(); local 191 destination.setImageBitmap(photo); 192 destination.setTag(R.id.photo_orientation, Integer.valueOf(orientation)); 193 destination.setTag(R.id.photo_width, Integer.valueOf(width)); 194 destination.setTag(R.id.photo_height, Integer.valueOf(height)); 195 setScaleType(destination); 197 Bitmap old = mBitmapStore.put(destination, photo);
|
/prebuilts/sdk/tools/linux/bin/ |
acp | |
/external/libhevc/common/x86/ |
ihevc_itrans_recon_sse42_intr.c | 948 /* Column 0 of destination computed here */ 950 /* Column 7 of destination computed here */ [all...] |
ihevc_itrans_recon_ssse3_intr.c | [all...] |