HomeSort by relevance Sort by last modified time
    Searched refs:width (Results 26 - 50 of 10732) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_delta_panel.h 23 void deltaPanelRendering(uint8_t *pImage, int width, int height);
  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) {
12 if ((unsigned)width > (unsigned)this->width() ||
17 int32_t area = width * height; // computed here since height will be modified
33 if (!row->canAddWidth(width, this->width())) {
44 SkASSERT(row->canAddWidth(width, this->width()));
46 row->fLoc.fX += width;
48 SkASSERT(row->fLoc.fX <= this->width());
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ColorSpace.java 31 * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
38 * @param width the width of the image (must be a multiple of 2)
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
57 * @param width the width of the image
61 ByteBuffer input, ByteBuffer output, int width, int height)
    [all...]
  /external/vixl/src/vixl/
compiler-intrinsics.cc 32 int CountLeadingSignBitsFallBack(int64_t value, int width) {
33 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64));
35 return CountLeadingZeros(value, width) - 1;
37 return CountLeadingZeros(~value, width) - 1;
42 int CountLeadingZerosFallBack(uint64_t value, int width) {
43 VIXL_ASSERT(IsPowerOf2(width) && (width <= 64));
45 return width;
48 value = value << (64 - width);
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
rotate_mips.cc 26 uint8* dst, int dst_stride, int width) {
62 "addiu %[width], -1 \n"
65 "bnez %[width], 1b \n"
90 "addiu %[width], -1 \n"
94 "bnez %[width], 11b \n"
100 [width] "+r" (width)
110 uint8* dst, int dst_stride, int width) {
115 "beqz %[width], 2f \n"
123 "srl $AT, %[width], 0x2 \n
    [all...]
convert_from_argb.cc 29 int width, int height) {
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
44 if (src_stride_argb == width * 4 &&
45 dst_stride_y == width &&
46 dst_stride_u == width &&
47 dst_stride_v == width) {
48 width *= height;
55 if (IS_ALIGNED(width, 16)) {
63 if (IS_ALIGNED(width, 8)) {
71 if (IS_ALIGNED(width, 16))
    [all...]
  /external/libyuv/files/source/
rotate_mips.cc 26 uint8* dst, int dst_stride, int width) {
62 "addiu %[width], -1 \n"
65 "bnez %[width], 1b \n"
90 "addiu %[width], -1 \n"
94 "bnez %[width], 11b \n"
100 [width] "+r" (width)
110 uint8* dst, int dst_stride, int width) {
115 "beqz %[width], 2f \n"
123 "srl $AT, %[width], 0x2 \n
    [all...]
convert_from_argb.cc 29 int width, int height) {
31 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int width) =
34 int width) = ARGBToUV444Row_C;
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
44 if (src_stride_argb == width * 4 &&
45 dst_stride_y == width &&
46 dst_stride_u == width &&
47 dst_stride_v == width) {
48 width *= height;
55 if (IS_ALIGNED(width, 16))
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_utils.cpp 25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width)
42 comp += width;
43 prev += width;
53 comp += width;
54 prev += width;
64 comp += width;
65 prev += width;
74 comp += width;
75 prev += width;
86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width)
    [all...]
  /external/skia/fuzz/
FuzzScaleToSides.cpp 21 width = fuzz->nextF(); local
25 !std::isfinite(width) ||
28 width <= 0.0f)
33 double scale = (double)width / ((double)radius1 + (double)radius2);
37 SkDebugf("%g %g %g %g\n", radius1, radius2, width, scale);
38 SkScaleToSides::AdjustRadii(width, scale, &radius1, &radius2);
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
PlanarYUVLuminanceSource.java 42 int width, int height, boolean reverseHorizontal) {
43 super(width, height);
45 if (left + width > dataWidth || top + height > dataHeight) {
55 reverseHorizontal(width, height);
64 int width = getWidth(); local
65 if (row == null || row.length < width) {
66 row = new byte[width];
69 System.arraycopy(yuvData, offset, row, 0, width);
75 int width = getWidth(); local
80 if (width == dataWidth && height == dataHeight)
110 int width = getWidth(); local
    [all...]
  /external/opencv3/modules/core/misc/java/src/java/
core+Size.java 6 public double width, height; field in class:Size
8 public Size(double width, double height) {
9 this.width = width;
18 width = p.x;
28 width = vals.length > 0 ? vals[0] : 0;
31 width = 0;
37 return width * height;
41 return new Size(width, height);
51 temp = Double.doubleToLongBits(width);
    [all...]
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCoderMaskUtil.cpp 39 int32_t width = matrix->GetWidth(); local
42 for (int32_t x = 0; x < width - 1; x++) {
43 int32_t value = array[y * width + x];
44 if (value == array[y * width + x + 1] &&
45 value == array[(y + 1) * width + x] &&
46 value == array[(y + 1) * width + x + 1]) {
57 int32_t width = matrix->GetWidth(); local
60 for (int32_t x = 0; x < width; ++x) {
65 if (x == width - 7 && (y >= 0 && y <= 6)) {
69 ((x >= 0 && x <= 6) || (x >= width - 7 && x <= width - 1))) {
109 int32_t width = matrix->GetWidth(); local
172 int32_t width = matrix->GetWidth(); local
    [all...]
  /external/libyuv/files/include/libyuv/
row.h 563 int width);
569 int width);
576 int width);
582 int width);
588 int width);
594 int width);
600 int width);
606 int width);
612 int width);
618 int width);
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
lsearch.c 44 lsearch(const void *key, void *base, size_t *nelp, size_t width,
48 return(linear_base(key, base, nelp, width, compar, 1));
52 lfind(const void *key, const void *base, size_t *nelp, size_t width,
55 return(linear_base(key, base, nelp, width, compar, 0));
59 linear_base(const void *key, const void *base, size_t *nelp, size_t width,
64 end = (const char *)base + *nelp * width;
65 for (element = base; element < end; element += width)
82 memcpy((void *)end, key, width);
  /dalvik/dx/tests/028-class-attrib-EnclosingMethod/
run 17 dx --debug --dump --width=200 small-class-1.txt small-class-2.txt
  /external/libgdx/gdx/jni/gdx2d/
jpgd_c.cpp 4 unsigned char *jpgd_decompress_jpeg_image_from_memory(const unsigned char *pSrc_data, int src_data_size, int *width, int *height, int *actual_comps, int req_comps) {
5 return jpgd::decompress_jpeg_image_from_memory(pSrc_data, src_data_size, width, height, actual_comps, req_comps);
jpgd_c.h 6 unsigned char *jpgd_decompress_jpeg_image_from_memory(const unsigned char *pSrc_data, int src_data_size, int *width, int *height, int *actual_comps, int req_comps);
  /external/libvpx/libvpx/vp8/common/arm/
bilinearfilter_arm.h 25 unsigned int width,
35 unsigned int width,
  /external/pdfium/xfa/src/fxbarcode/
BC_LuminanceSource.cpp 25 CBC_LuminanceSource::CBC_LuminanceSource(int32_t width, int32_t height)
26 : m_width(width), m_height(height) {}
  /external/replicaisland/src/com/replica/replicaisland/
Texture.java 28 public int width; field in class:Texture
40 width = 0;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/
bilinearfilter_arm.h 25 unsigned int width,
35 unsigned int width,
  /cts/hostsidetests/sustainedperf/shadertoy_android/src/
GLtestLib.java 28 * @param width the current view width
31 public static native void init(int width, int height);
  /cts/tests/tests/view/src/android/view/cts/surfacevalidator/
PixelChecker.java 19 boolean checkPixels(int blackishPixelCount, int width, int height);
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNILib.java 28 * @param width the current view width
31 public static native void init(int width, int height);

Completed in 1553 milliseconds

12 3 4 5 6 7 8 91011>>