Searched refs:discrete (Results 1 – 25 of 84) sorted by relevance
1234
/external/libkmsxx/utils/ |
D | kmscapture.cpp | 117 if (v4lfrms.discrete.width > iw || v4lfrms.discrete.height > ih) { in CameraPipeline() 119 } else if (v4lfrms.discrete.width == iw && v4lfrms.discrete.height == ih) { in CameraPipeline() 121 best_w = v4lfrms.discrete.width; in CameraPipeline() 122 best_h = v4lfrms.discrete.height; in CameraPipeline() 124 } else if (v4lfrms.discrete.width >= best_w || v4lfrms.discrete.height >= ih) { in CameraPipeline() 125 best_w = v4lfrms.discrete.width; in CameraPipeline() 126 best_h = v4lfrms.discrete.height; in CameraPipeline()
|
/external/rust/crates/plotters/src/coord/ranged1d/ |
D | mod.rs | 59 mod discrete; module 60 pub use discrete::{DiscreteRanged, IntoSegmentedCoord, SegmentValue, SegmentedCoord};
|
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
D | v4l2_show.c | 140 framesize->discrete.width, framesize->discrete.height); in show_v4l2_frmsizeenum()
|
D | test_VIDIOC_ENUM_FRAMESIZES.c | 87 CU_ASSERT(0 < framesize.discrete.width); in do_test_VIDIOC_ENUM_FRAMESIZES() 88 CU_ASSERT(0 < framesize.discrete.height); in do_test_VIDIOC_ENUM_FRAMESIZES()
|
/external/dtc/tests/ |
D | addresses.dts | 16 discrete-bus@2000000 {
|
/external/wycheproof/doc/ |
D | dh.md | 50 such that the special number field sieve can be used to compute discrete 54 that 1024 bit discrete logarithms with the special number field sieve are 71 [G92]: D. M. Gordon. "Designing and detecting trapdoors for discrete log 75 discrete logarithm computation". http://eprint.iacr.org/2016/961.pdf 81 "A key recovery attack on discrete log-based schemes using a prime order subgroup",
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_FFT2D.pbtxt | 22 Computes the 2-dimensional discrete Fourier transform over the inner-most
|
D | api_def_FFT3D.pbtxt | 22 Computes the 3-dimensional discrete Fourier transform over the inner-most 3
|
D | api_def_FFT.pbtxt | 22 Computes the 1-dimensional discrete Fourier transform over the inner-most
|
D | api_def_IFFT.pbtxt | 22 Computes the inverse 1-dimensional discrete Fourier transform over the
|
D | api_def_IFFT2D.pbtxt | 22 Computes the inverse 2-dimensional discrete Fourier transform over the
|
D | api_def_IFFT3D.pbtxt | 22 Computes the inverse 3-dimensional discrete Fourier transform over the
|
D | api_def_RFFT.pbtxt | 29 Computes the 1-dimensional discrete Fourier transform of a real-valued signal
|
D | api_def_RFFT2D.pbtxt | 30 Computes the 2-dimensional discrete Fourier transform of a real-valued signal
|
D | api_def_RFFT3D.pbtxt | 30 Computes the 3-dimensional discrete Fourier transform of a real-valued signal
|
D | api_def_IRFFT.pbtxt | 29 Computes the inverse 1-dimensional discrete Fourier transform of a real-valued
|
D | api_def_IRFFT2D.pbtxt | 29 Computes the inverse 2-dimensional discrete Fourier transform of a real-valued
|
D | api_def_IRFFT3D.pbtxt | 29 Computes the inverse 3-dimensional discrete Fourier transform of a real-valued
|
/external/iproute2/ |
D | README.distribution | 23 The claim now is, I can create a (discrete) random variable Y whose 25 Y = T(U), where U is a discrete uniform random variable with range 1 to N. 27 (let's call it H), is a discrete approximation to F. But
|
/external/iproute2/netem/ |
D | README.distribution | 25 The claim now is, I can create a (discrete) random variable Y whose 27 Y = T(U), where U is a discrete uniform random variable with range 1 to N. 29 (let's call it H), is a discrete approximation to F. But
|
/external/rust/crates/plotters/ |
D | RELEASE-NOTES.md | 76 * Better abstraction of discrete coordinates 77 * Linspace coordinate, which can be used converting a continous coorindate into a discrete buckets
|
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_glslang_utils.mm | 113 // NOTE(hqle): We use separate discrete binding point for now, in future, we should use 136 // XFB buffer is allocated slot starting from last discrete Metal buffer slot. 190 // Use discrete buffer binding slot for UBOs which translates each slot to [[buffer(n)]] 324 // Force discrete slot bindings for textures, default uniforms & driver uniforms
|
/external/webrtc/modules/desktop_capture/mac/ |
D | desktop_configuration.mm | 176 // The MBP having both discrete and integrated graphic cards will do 177 // automate graphics switching by default. When it switches from discrete to
|
/external/v4l2_codec2/common/ |
D | V4L2Device.cpp | 1709 if (frameSize.discrete.width >= base::checked_cast<uint32_t>(maxResolution->width) && in getSupportedResolution() 1710 frameSize.discrete.height >= base::checked_cast<uint32_t>(maxResolution->height)) { in getSupportedResolution() 1711 maxResolution->set(frameSize.discrete.width, frameSize.discrete.height); in getSupportedResolution() 1714 (frameSize.discrete.width <= base::checked_cast<uint32_t>(minResolution->width) && in getSupportedResolution() 1715 frameSize.discrete.height <= in getSupportedResolution() 1717 minResolution->set(frameSize.discrete.width, frameSize.discrete.height); in getSupportedResolution()
|
/external/tensorflow/tensorflow/lite/python/ |
D | op_hint.py | 621 for discrete in flattened: 622 new_node.input.append(_tensor_name_base(discrete.name)) 662 for idx, discrete in enumerate(flattened): 663 output_node = _copy.deepcopy(discrete)
|
1234