HomeSort by relevance Sort by last modified time
    Searched refs:resized (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/volley/src/main/java/com/android/volley/toolbox/
ImageRequest.java 142 int resized = maxPrimary; local
146 if ((resized * ratio) < maxSecondary) {
147 resized = (int) (maxSecondary / ratio);
149 return resized;
152 if ((resized * ratio) > maxSecondary) {
153 resized = (int) (maxSecondary / ratio);
155 return resized;
  /libcore/ojluni/src/main/java/javax/crypto/
CipherSpi.java     [all...]
  /external/elfutils/libdwfl/
segment.c 164 bool resized = false; local
173 resized = true;
182 resized = true;
191 resized = true;
201 resized = true;
222 if (resized && idx - 1 >= highest)
  /external/tensorflow/tensorflow/contrib/gan/python/eval/python/
classifier_metrics_impl.py 125 height: Integer. Height of resized output image.
126 width: Integer. Width of resized output image.
138 resized = image_ops.resize_bilinear(images, [height, width])
139 resized = (resized - 128.0) / 128.0
141 resized = array_ops.squeeze(resized, axis=0)
142 return resized
  /external/tensorflow/tensorflow/examples/label_image/
label_image.py 59 resized = tf.image.resize_bilinear(dims_expander, [input_height, input_width])
60 normalized = tf.divide(tf.subtract(resized, [input_mean]), [input_std])
main.cc 164 auto resized = ResizeBilinear( local
168 Div(root.WithOpName(output_name), Sub(root, resized, {input_mean}),
331 // Get the image from disk as a float array of numbers, resized and normalized
  /frameworks/base/core/java/android/view/
IWindow.aidl 51 void resized(in Rect frame, in Rect overscanInsets, in Rect contentInsets,
  /external/annotation-tools/asmx/src/org/objectweb/asm/
Label.java 58 boolean resized; field in class:Label
  /external/libvpx/libvpx/vp9/encoder/
vp9_denoiser.h 75 int alt_fb_idx, int gld_fb_idx, int lst_fb_idx, int resized,
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_st.c 205 boolean resized; local
222 resized = (xstfb->buffer->width != xstfb->texture_width ||
226 if (resized || new_mask) {
232 if (!resized) {
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
TestIWindow.java 39 public void resized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, method in class:TestIWindow
  /external/mesa3d/src/gallium/state_trackers/hgl/
hgl.c 158 boolean resized; local
176 resized = (buffer->width != context->width)
179 if (resized || newMask) {
191 //if (!resized) {
  /frameworks/base/services/core/java/com/android/server/vr/
Vr2dDisplay.java 219 boolean resized = false;
230 resized = true;
242 if (mVirtualDisplay != null && resized && mIsVirtualDisplayAllowed) {
  /external/ImageMagick/www/api/
resize.php 82 <dd>the number of columns in the resized image. </dd>
86 <dd>the number of rows in the resized image. </dd>
118 <dd>the number of columns in the resized image. </dd>
122 <dd>the number of rows in the resized image. </dd>
250 <dd>the image to be resized to fit the given resolution. </dd>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 54 * @param layout the layout containing the resized node
55 * @param resized the node being resized
57 * @param horizontalEdgeType the type of horizontal edge being resized, or null
58 * @param verticalEdgeType the type of vertical edge being resized, or null
60 public ResizeHandler(INode layout, INode resized,
73 Set<INode> nodes = Collections.singleton(resized);
95 if (child != resized) {
177 * @param child the node being resized
  /frameworks/base/core/java/com/android/internal/view/
BaseIWindow.java 42 public void resized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, method in class:BaseIWindow
  /external/mesa3d/docs/specs/OLD/
MESA_resize_buffers.spec 34 Mesa cannot automatically detect when a window has been resized.
57 determines that a window has been resized. Calling
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLX509Certificate.java 351 final boolean[] resized = new boolean[9];
352 System.arraycopy(kusage, 0, resized, 0, kusage.length);
353 return resized;
  /external/mesa3d/src/gallium/state_trackers/dri/
drisw.c 258 * framebuffer is resized or destroyed.
270 boolean resized; local
276 resized = (drawable->old_w != width ||
280 if (resized) {
  /external/tensorflow/tensorflow/python/ops/
image_ops_impl.py 803 resized = pad_to_bounding_box(cropped, offset_pad_height, offset_pad_width,
807 if resized.get_shape().ndims is None:
808 raise ValueError('resized contains no shape.')
810 _, resized_height, resized_width, _ = _ImageDimensions(resized, rank=4)
815 'resized height is not correct.')
818 'resized width is not correct.')
820 resized = control_flow_ops.with_dependencies(assert_ops, resized)
823 resized = array_ops.squeeze(resized, squeeze_dims=[0]
    [all...]
  /external/tensorflow/tensorflow/core/ops/
nn_ops.cc 324 ShapeHandle resized = input; local
341 TF_RETURN_IF_ERROR(c->ReplaceDim(resized, 1, new_height, &resized));
342 TF_RETURN_IF_ERROR(c->ReplaceDim(resized, 2, new_width, &resized));
348 c->WithRank(resized, c->Value(c->Dim(paddings, 0)), &resized));
350 c->Merge(paddings, c->Matrix(c->Rank(resized), 2), &paddings));
357 DimensionHandle dim = c->Dim(resized, i);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java 137 Vector<Backing> resized = new Vector<Backing>(); local
140 resized.add(backing);
145 mBackings = resized;
  /external/tensorflow/tensorflow/examples/multibox_detector/
main.cc 112 auto resized = ResizeBilinear( local
116 Div(root.WithOpName(output_name), Sub(root, resized, {input_mean}),
395 // Get the image from disk as a float array of numbers, resized and normalized
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
StoredEntry.java 770 boolean resized = setLocalExtraNoNotify(localExtra);
771 file.localHeaderChanged(this, resized);
  /external/tensorflow/tensorflow/compiler/tests/
image_ops_test.py 412 resized = gen_image_ops.resize_bilinear(
414 out = sess.run(resized, {image: image_np[np.newaxis, :, :, np.newaxis]})
429 resized = gen_image_ops._resize_bilinear_grad(
433 out = sess.run(resized, {grads: grads_np[np.newaxis, :, :, np.newaxis]})

Completed in 1726 milliseconds

1 2 3