HomeSort by relevance Sort by last modified time
    Searched refs:new_width (Results 1 - 24 of 24) sorted by null

  /external/webrtc/talk/media/webrtc/
webrtcvideoframefactory_unittest.cc 89 int new_width = captured_frame.width / 2; local
91 frame.reset(factory.CreateAliasedFrame(&captured_frame, new_width,
92 new_height, new_width, new_height));
93 VerifyFrame(frame.get(), webrtc::kVideoRotation_270, new_width, new_height,
97 &captured_frame, new_width, new_height, new_width / 2, new_height / 2));
98 VerifyFrame(frame.get(), webrtc::kVideoRotation_270, new_width / 2,
105 &captured_frame, new_width, new_height, new_width / 2, new_height / 2));
106 VerifyFrame(frame.get(), webrtc::kVideoRotation_270, new_width / 2
    [all...]
webrtcvideoframe.cc 212 int new_width = dw; local
216 new_width = dh;
220 InitToEmptyBuffer(new_width, new_height, pixel_width, pixel_height,
  /external/tensorflow/tensorflow/core/kernels/
ops_util_test.cc 44 int new_width; member in struct:tensorflow::__anon39856::OpsUtilTest::padding_struct::__anon39858
71 int64 new_height, new_width, pad_rows, pad_cols; local
79 pad_struct.input.col_stride, pad_struct.input.padding, &new_width,
86 int64 new_height, new_width, pad_rows, pad_cols; local
94 pad_struct.input.col_stride, pad_struct.input.padding, &new_width,
98 EXPECT_EQ(pad_struct.output.new_width, new_width);
105 int64 new_height, new_width, pad_top, pad_bottom, pad_left, pad_right; local
113 pad_struct.input.col_stride, pad_struct.input.padding, &new_width,
117 EXPECT_EQ(pad_struct.output.new_width, new_width)
    [all...]
  /external/libmojo/ui/gfx/geometry/
rect_f.cc 167 float new_width = width(); local
169 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width);
171 SetRect(new_x, new_y, new_width, new_height);
179 float new_width = std::min(width(), size.width()); local
181 float new_x = x() + (width() - new_width) / 2;
183 SetRect(new_x, new_y, new_width, new_height);
rect.cc 243 int new_width = width(); local
245 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width);
247 SetRect(new_x, new_y, new_width, new_height);
255 int new_width = std::min(width(), size.width()); local
257 int new_x = x() + (width() - new_width) / 2;
259 SetRect(new_x, new_y, new_width, new_height);
  /external/webrtc/talk/media/base/
videoadapter.cc 427 int new_width, new_height; local
428 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
433 << " To: " << new_width << "x" << new_height;
497 int new_width, new_height; local
498 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
512 << " To: " << new_width << "x" << new_height;
558 int new_width, new_height; local
559 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
565 << " To: " << new_width << "x" << new_height;
624 bool CoordinatedVideoAdapter::AdaptToMinimumFormat(int* new_width,
    [all...]
videoadapter.h 169 bool AdaptToMinimumFormat(int* new_width, int* new_height);
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
image_data.h 140 const int new_width = local
146 pyramid_sqrt2_[level] = new Image<uint8_t>(new_width, new_height);
image-inl.h 116 const int new_width = right - left + 1; local
119 Image<T>* const cropped_image = new Image(new_width, new_height);
123 new_width * sizeof(T));
object_tracker_jni.cc 445 const int new_width = (width + factor - 1) / factor; local
449 new_width, new_height, reinterpret_cast<uint8_t*>(output_array), false);
  /external/v8/src/compiler/
loop-analysis.cc 274 int new_width = width_ + 1; local
276 uint32_t* new_backward = zone_->NewArray<uint32_t>(new_width * max);
277 memset(new_backward, 0, new_width * max * sizeof(uint32_t));
280 uint32_t* np = &new_backward[i * new_width];
285 width_ = new_width;
  /external/libxcam/modules/ocl/
cl_image_scaler.cpp 215 uint32_t new_width = XCAM_ALIGN_UP ((uint32_t)(video_info.width * _h_scaler_factor), local
220 scaler_video_info.init (video_info.format, new_width, new_height);
cl_retinex_handler.cpp 232 uint32_t new_width = XCAM_ALIGN_UP ((uint32_t)(video_info.width * _scaler_factor), 8); local
235 scaler_video_info.init (video_info.format, new_width, new_height);
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
MediaCodecVideoDecoder.java 541 int new_width = format.getInteger(MediaFormat.KEY_WIDTH); local
543 if (hasDecodedFirstFrame && (new_width != width || new_height != height)) {
545 height + ". New " + new_width + "*" + new_height);
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 2988 int new_width = cpi->oxcf.Width; local
    [all...]
onyx_if.c 2556 int new_width, new_height; local
    [all...]
  /external/pdfium/core/fxge/dib/
cfx_dibitmap.cpp 1035 int new_width = rect.right / 8 - rect.left / 8; local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
qm_select_unittest.cc 65 uint16_t new_width,
    [all...]
  /external/pdfium/core/fxcrt/
fx_coordinates.h 66 CFX_STemplate(BaseType new_width, BaseType new_height)
67 : width(new_width), height(new_height) {}
  /external/tensorflow/tensorflow/core/ops/
nn_ops.cc 336 DimensionHandle new_width = c->UnknownDim(); local
339 new_width = c->MakeDim(size->flat<int32>()(1));
342 TF_RETURN_IF_ERROR(c->ReplaceDim(resized, 2, new_width, &resized));
    [all...]
  /external/libjpeg-turbo/
transupp.c     [all...]
  /external/libcups/cups/
ppd-cache.c 987 int new_width, \/* New width in 2540ths *\/ local
    [all...]
  /external/opencv/cxcore/src/
cxarray.cpp 3108 int total_width, new_width; local
    [all...]
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 1403 milliseconds