/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
SimpleTarget.java | 5 * of non essential methods that allows the caller to specify an exact width/height. Typicaly use cases look something 27 private final int width; field in class:SimpleTarget 47 * @param width The width in pixels of the desired resource. 50 public SimpleTarget(int width, int height) { 51 this.width = width; 62 if (width <= 0 || height <= 0) { 63 throw new IllegalArgumentException("Width and height must both be > 0, but given width: " + width + " and [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
Size.java | 23 public final int width; field in class:Size 26 public Size(int width, int height) { 27 this.width = width;
|
SelectableResolution.java | 24 public final int width; field in class:SelectableResolution 30 public SelectableResolution(int cameraId, int width, int height) { 32 this.width = width; 40 return "Cam " + cameraId + ": " + width + " x " + height + " - "
|
/external/deqp/framework/common/ |
tcuSurface.cpp | 34 Surface::Surface(int width, int height) 35 : m_width (width) 37 , m_pixels (width*height) 49 * \param width New width. 52 void Surface::setSize (int width, int height) 54 m_width = width; 56 m_pixels.setStorage(width * height);
|
/external/v4l2_codec2/vda/ |
size.h | 19 Size(int width, int height) 20 : width_(width < 0 ? 0 : width), height_(height < 0 ? 0 : height) {} 22 constexpr int width() const { return width_; } function in struct:media::Size 25 void set_width(int width) { width_ = width < 0 ? 0 : width; } 28 void SetSize(int width, int height) { 29 set_width(width); 33 bool IsEmpty() const { return !width() || !height(); [all...] |
/external/skia/src/gpu/ |
GrRectanizer.h | 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) { 18 SkASSERT(width >= 0); 26 int width() const { return fWidth; } function in class:GrRectanizer 31 virtual bool addRect(int width, int height, SkIPoint16* loc) = 0; 37 static GrRectanizer* Factory(int width, int height);
|
GrRectanizer_pow2.cpp | 10 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { 11 if ((unsigned)width > (unsigned)this->width() || 16 int32_t area = width * height; // computed here since height will be modified 32 if (!row->canAddWidth(width, this->width())) { 43 SkASSERT(row->canAddWidth(width, this->width())); 45 row->fLoc.fX += width; 47 SkASSERT(row->fLoc.fX <= this->width()); [all...] |
/dalvik/dx/tests/008-field/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/009-method/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/010-class-attrib-InnerClasses/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/011-class-attrib-Synthetic/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/012-class-attrib-SourceFile/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/013-class-attrib-Deprecated/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/014-field-attrib-ConstantValue/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/015-field-attrib-Synthetic/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/016-field-attrib-Deprecated/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/025-class-attrib-Signature/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/dalvik/dx/tests/026-field-attrib-Signature/ |
run | 17 dx --debug --dump --width=200 small-class.txt
|
/external/v8/src/arm64/ |
utils-arm64.cc | 16 int CountLeadingZeros(uint64_t value, int width) { 18 DCHECK((width == 32) || (width == 64)); 20 uint64_t bit_test = 1UL << (width - 1); 21 while ((count < width) && ((bit_test & value) == 0)) { 29 int CountLeadingSignBits(int64_t value, int width) { 31 DCHECK((width == 32) || (width == 64)); 33 return CountLeadingZeros(value, width) - 1; 35 return CountLeadingZeros(~value, width) - 1 [all...] |
/external/skia/gm/ |
thinconcavepaths.cpp | 14 void draw_thin_stroked_rect(SkCanvas* canvas, const SkPaint& paint, SkScalar width) { 16 path.moveTo(10 + width, 10 + width); 17 path.lineTo(40, 10 + width); 19 path.lineTo(10 + width, 20); 21 path.lineTo(10, 20 + width); 22 path.lineTo(40 + width, 20 + width); 23 path.lineTo(40 + width, 10); 27 void draw_thin_right_angle(SkCanvas* canvas, const SkPaint& paint, SkScalar width) { [all...] |
/external/autotest/client/deps/glbench/src/ |
png_helper.h | 8 void write_png_file(const char* file_name, char* pixels, int width, int height);
|
/frameworks/av/cmds/stagefright/ |
jpeg.h | 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);
|
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_delta_panel.h | 23 void deltaPanelRendering(uint8_t *pImage, int width, int height);
|
/external/skia/fuzz/ |
FuzzScaleToSides.cpp | 19 float radius1, radius2, width; local 20 fuzz->next(&radius1, &radius2, &width); 24 !std::isfinite(width) || 27 width <= 0.0f) 32 double scale = (double)width / ((double)radius1 + (double)radius2); 36 SkDebugf("%g %g %g %g\n", radius1, radius2, width, scale); 37 SkScaleToSides::AdjustRadii(width, scale, &radius1, &radius2);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
FixedPointPreCompInfo.java | 17 * The width used for the precomputation. If a larger width precomputation 19 * code should refer to the actual width. 21 protected int width = -1; field in class:FixedPointPreCompInfo 45 return width; 48 public void setWidth(int width) 50 this.width = width;
|