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

1 2

  /external/volley/src/main/java/com/android/volley/toolbox/
ImageRequest.java 164 int resized = maxPrimary; local
168 if ((resized * ratio) < maxSecondary) {
169 resized = (int) (maxSecondary / ratio);
171 return resized;
174 if ((resized * ratio) > maxSecondary) {
175 resized = (int) (maxSecondary / ratio);
177 return resized;
  /external/elfutils/libdwfl/
segment.c 168 bool resized = false; local
177 resized = true;
186 resized = true;
195 resized = true;
205 resized = true;
226 if (resized && idx - 1 >= highest)
  /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 165 auto resized = ResizeBilinear( local
169 Div(root.WithOpName(output_name), Sub(root, resized, {input_mean}),
332 // Get the image from disk as a float array of numbers, resized and normalized
  /external/libvpx/libvpx/vp9/encoder/
vp9_denoiser.h 77 int resized, int svc_refresh_denoiser_buffers, int second_spatial_layer);
vp9_denoiser.c 469 int resized, int svc_refresh_denoiser_buffers, int second_spatial_layer) {
472 // if the just encoded frame was resized. For SVC, copy source if the base
474 if (frame_type == KEY_FRAME || resized != 0 || denoiser->reset ||
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_st.c 206 boolean resized; local
223 resized = (xstfb->buffer->width != xstfb->texture_width ||
227 if (resized || new_mask) {
233 if (!resized) {
  /external/skqp/src/image/
SkImage_GpuYUVA.cpp 202 SkAutoPixmapStorage resized; local
212 if (!resized.tryAlloc(info) ||
213 !yuvaPixmaps[i].scalePixels(resized, kLow_SkFilterQuality)) {
216 pixmap = &resized;
SkImage_Gpu.cpp 511 SkAutoPixmapStorage resized; local
519 if (!resized.tryAlloc(info) || !originalPixmap.scalePixels(resized, kLow_SkFilterQuality)) {
522 pixmap = &resized;
  /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) {
  /external/tensorflow/tensorflow/contrib/gan/python/eval/python/
classifier_metrics_impl.py 133 height: Integer. Height of resized output image.
134 width: Integer. Width of resized output image.
146 resized = image_ops.resize_bilinear(images, [height, width])
147 resized = (resized - 128.0) / 128.0
149 resized = array_ops.squeeze(resized, axis=0)
150 return resized
    [all...]
  /external/skia/src/image/
SkImage_GpuYUVA.cpp 224 SkAutoPixmapStorage resized; local
234 if (!resized.tryAlloc(info) ||
235 !yuvaPixmaps[i].scalePixels(resized, kLow_SkFilterQuality)) {
238 pixmap = &resized;
SkImage_Gpu.cpp 536 SkAutoPixmapStorage resized; local
544 if (!resized.tryAlloc(info) || !originalPixmap.scalePixels(resized, kLow_SkFilterQuality)) {
547 pixmap = &resized;
    [all...]
  /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 349 final boolean[] resized = new boolean[9];
350 System.arraycopy(kusage, 0, resized, 0, kusage.length);
351 return resized;
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLX509Certificate.java 353 final boolean[] resized = new boolean[9];
354 System.arraycopy(kusage, 0, resized, 0, kusage.length);
355 return resized;
  /external/mesa3d/src/gallium/state_trackers/dri/
drisw.c 259 * framebuffer is resized or destroyed.
271 boolean resized; local
277 resized = (drawable->old_w != width ||
281 if (resized) {
  /external/tensorflow/tensorflow/compiler/tests/
image_ops_test.py 421 resized = gen_image_ops.resize_nearest_neighbor(
423 out = sess.run(resized, {image: image_np[np.newaxis, :, :, np.newaxis]})
529 resized = gen_image_ops.resize_bilinear(
531 out = sess.run(resized, {image: image_np[np.newaxis, :, :, np.newaxis]})
550 resized = gen_image_ops.resize_bilinear_grad(
554 out = sess.run(resized, {grads: grads_np[np.newaxis, :, :, np.newaxis]})
727 resized = gen_image_ops.resize_bilinear(
729 out = sess.run(resized, {image: input_image[:, :, :, np.newaxis]})
    [all...]
  /external/tensorflow/tensorflow/examples/multibox_detector/
main.cc 114 auto resized = ResizeBilinear( local
118 Div(root.WithOpName(output_name), Sub(root, resized, {input_mean}),
399 // Get the image from disk as a float array of numbers, resized and normalized
  /external/tensorflow/tensorflow/python/ops/
image_ops_test.py     [all...]
image_ops_impl.py 917 resized = pad_to_bounding_box(cropped, offset_pad_height, offset_pad_width,
921 if resized.get_shape().ndims is None:
922 raise ValueError('resized contains no shape.')
924 _, resized_height, resized_width, _ = _ImageDimensions(resized, rank=4)
929 'resized height is not correct.')
932 'resized width is not correct.')
934 resized = control_flow_ops.with_dependencies(assert_ops, resized)
937 resized = array_ops.squeeze(resized, axis=[0]
    [all...]
  /external/ImageMagick/coders/
icon.c 168 *resized,
205 resized=ResizeImage(image,sizes[i],sizes[i],image->filter,exception);
206 if (resized == (Image *) NULL)
210 images=resized;
212 AppendImageToList(&images,resized);
164 *resized, local
    [all...]
  /external/tensorflow/tensorflow/core/ops/
nn_ops.cc 349 ShapeHandle resized = input; local
366 TF_RETURN_IF_ERROR(c->ReplaceDim(resized, 1, new_height, &resized));
367 TF_RETURN_IF_ERROR(c->ReplaceDim(resized, 2, new_width, &resized));
373 c->WithRank(resized, c->Value(c->Dim(paddings, 0)), &resized));
375 c->Merge(paddings, c->Matrix(c->Rank(resized), 2), &paddings));
382 DimensionHandle dim = c->Dim(resized, i);
    [all...]
  /external/webrtc/webrtc/modules/video_render/mac/
video_render_agl.cc 1079 bool resized = false; local
1085 resized = true;
1094 // The HiView is resized or has moved.
1095 resized = true;
1098 if (resized)
1101 //WEBRTC_TRACE(kTraceDebug, "%s:%d Window has resized", __FUNCTION__, __LINE__);
    [all...]
  /build/soong/ui/terminal/
writer.go 157 // Run this on every line in case the window has been resized while

Completed in 1855 milliseconds

1 2