Searched defs:width (Results 201 - 225 of 3377) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/tools/frame_editing/
H A Dframe_editing_lib.cc24 int EditFrames(const string& in_path, int width, int height, argument
39 int frame_length = CalcBufferSize(kI420, width, height);
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_image_process.cc35 unsigned int width,
31 Transform(int size, unsigned char* frame_buffer, int64_t ntp_time_ms, unsigned int timestamp, unsigned int width, unsigned int height) argument
H A Dvie_file_based_comparison_tests.cc25 int width,
37 width,
90 int width,
102 if (!fake_camera.StartCameraInNewThread(i420_video_file, width, height)) {
121 ::TestFullStack(interfaces, capture_id, video_channel, width, height,
23 TestCallSetup( const std::string& i420_video_file, int width, int height, ViEToFileRenderer* local_file_renderer, ViEToFileRenderer* remote_file_renderer) argument
88 TestFullStack( const std::string& i420_video_file, int width, int height, int bit_rate_kbps, ProtectionMethod protection_method, const NetworkParameters& network, ViEToFileRenderer* local_file_renderer, ViEToFileRenderer* remote_file_renderer, FrameDropDetector* frame_drop_detector) argument
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
H A Dvie_external_render_filter.h31 unsigned int width,
33 if (width != width_ || height_ != height) {
34 renderer_->FrameSizeChange(width, height, 1);
35 width_ = width;
27 Transform(int size, unsigned char* frame_buffer, int64_t ntp_time_ms, unsigned int timestamp, unsigned int width, unsigned int height) argument
/external/chromium_org/ui/android/java/src/org/chromium/ui/base/
H A DViewAndroidDelegate.java20 * Set the anchor view to specified position and width (all units in dp).
24 * @param width The width of the anchor view.
27 void setAnchorViewPosition(View view, float x, float y, float width, float height); argument
/external/chromium_org/ui/base/l10n/
H A Dl10n_font_util.cc19 int width = font.GetExpectedTextWidth(static_cast<int>(chars)); local
20 DCHECK_GT(width, 0);
21 return width;
/external/chromium_org/ui/gfx/geometry/
H A Drect_conversions.cc20 int width = rect.width() == 0 ? 0 : std::max(ToCeiledInt(max_x) - min_x, 0); local
22 return Rect(min_x, min_y, width, height);
30 int width = std::max(ToFlooredInt(max_x) - min_x, 0); local
32 return Rect(min_x, min_y, width, height);
77 ToFlooredInt(rect.width()),
H A Dsize.h26 // A size has width and height values.
30 Size(int width, int height) : SizeBase<Size, int>(width, height) {} argument
48 return SizeF(width(), height());
55 return lhs.width() == rhs.width() && lhs.height() == rhs.height();
/external/chromium_org/ui/views/controls/button/
H A Dimage_button_unittest.cc13 gfx::ImageSkia CreateTestImage(int width, int height) { argument
15 bitmap.allocN32Pixels(width, height);
45 EXPECT_EQ(10, button.GetImageToPaint().width());
61 EXPECT_EQ(10, button.GetImageToPaint().width());
/external/chromium_org/ui/views/corewm/
H A Dtooltip_aura_unittest.cc25 int width, line_count, expect_lines; local
37 width = line_count = -1;
43 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
45 EXPECT_NEAR(max_pixel_width, width, error_in_pixel_width);
51 width = line_count = -1;
56 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
58 EXPECT_NEAR(max_pixel_width, width, error_in_pixel_width);
63 width = line_count = -1;
70 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
72 EXPECT_NEAR(max_pixel_width, width, error_in_pixel_widt
[all...]
/external/chromium_org/ui/web_dialogs/
H A Dweb_dialog_ui.h50 int width; member in struct:ui::WebDialogUI::WebDialogParams
/external/chromium_org/v8/src/arm64/
H A Dutils-arm64.cc16 int CountLeadingZeros(uint64_t value, int width) { argument
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) { argument
31 DCHECK((width == 32) || (width == 64));
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width)
40 CountTrailingZeros(uint64_t value, int width) argument
51 CountSetBits(uint64_t value, int width) argument
[all...]
/external/clang/test/PCH/
H A Dcxx-implicit-moves.cpp10 double width; member in struct:NSSize
22 return s.width;
/external/clang/test/Sema/
H A Dinit-struct-qualified.c5 typedef struct _NSSize { CGFloat width; CGFloat height; } NSSize; member in struct:_NSSize
/external/deqp/framework/delibs/deimage/
H A DdeImage.h39 int width; member in struct:deImage_s
45 deImage* deImage_create (int width, int height, deImageFormat format);
/external/deqp/modules/egl/
H A DteglGLES1RenderUtil.cpp41 void clear (int x, int y, int width, int height, const tcu::Vec4& color) argument
44 glScissor(x, y, width, height);
50 void readPixels (tcu::Surface& dst, int x, int y, int width, int height) argument
52 dst.setSize(width, height);
53 glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
58 void clear (int x, int y, int width, int height, const tcu::Vec4& color)
60 DE_UNREF(x && y && width && height);
65 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
67 DE_UNREF(x && y && width && height);
H A DteglGLES2RenderUtil.cpp45 void clear (int x, int y, int width, int height, const tcu::Vec4& color) argument
48 glScissor(x, y, width, height);
54 void readPixels (tcu::Surface& dst, int x, int y, int width, int height) argument
56 dst.setSize(width, height);
57 glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, dst.getAccess().getDataPtr());
62 void clear (int x, int y, int width, int height, const tcu::Vec4& color)
64 DE_UNREF(x && y && width && height);
69 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
71 DE_UNREF(x && y && width && height);
H A DteglVGRenderUtil.cpp41 void clear (int x, int y, int width, int height, const tcu::Vec4& color) argument
44 vgClear(x, y, width, height);
48 void readPixels (tcu::Surface& dst, int x, int y, int width, int height) argument
50 dst.setSize(width, height);
51 vgReadPixels(dst.getAccess().getDataPtr(), width*4, VG_sRGBA_8888, 0, 0, width, height);
56 void clear (int x, int y, int width, int height, const tcu::Vec4& color)
58 DE_UNREF(x && y && width && height);
63 void readPixels (tcu::Surface& dst, int x, int y, int width, int height)
65 DE_UNREF(x && y && width
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DCacheLoader.java18 public <Z> Resource<Z> load(Key key, ResourceDecoder<InputStream, Z> decoder, int width, int height) { argument
23 result = decoder.decode(fromCache, width, height);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngineKeyFactory.java11 public EngineKey buildKey(String id, int width, int height, ResourceDecoder cacheDecoder, argument
14 return new EngineKey(id, width, height, cacheDecoder, sourceDecoder, transformation, encoder, transcoder,
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DLruPoolStrategy.java7 public Bitmap get(int width, int height, Bitmap.Config config); argument
10 public String logBitmap(int width, int height, Bitmap.Config config); argument
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DFileLoader.java20 public DataFetcher<T> getResourceFetcher(File model, int width, int height) { argument
21 return uriLoader.getResourceFetcher(Uri.fromFile(model), width, height);
H A DResourceLoader.java21 public DataFetcher<T> getResourceFetcher(Integer model, int width, int height) { argument
23 return uriLoader.getResourceFetcher(uri, width, height);
H A DStringLoader.java20 public DataFetcher<T> getResourceFetcher(String model, int width, int height) { argument
27 return uriLoader.getResourceFetcher(uri, width, height);
H A DUriLoader.java18 public final DataFetcher<T> getResourceFetcher(Uri model, int width, int height) { argument
25 result = urlLoader.getResourceFetcher(new GlideUrl(model.toString()), width, height);

Completed in 4616 milliseconds

1234567891011>>