Home
last modified time | relevance | path

Searched refs:discrete (Results 1 – 25 of 84) sorted by relevance

1234

/external/libkmsxx/utils/
Dkmscapture.cpp117 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/
Dmod.rs59 mod discrete; module
60 pub use discrete::{DiscreteRanged, IntoSegmentedCoord, SegmentValue, SegmentedCoord};
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dv4l2_show.c140 framesize->discrete.width, framesize->discrete.height); in show_v4l2_frmsizeenum()
Dtest_VIDIOC_ENUM_FRAMESIZES.c87 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/
Daddresses.dts16 discrete-bus@2000000 {
/external/wycheproof/doc/
Ddh.md50 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/
Dapi_def_FFT2D.pbtxt22 Computes the 2-dimensional discrete Fourier transform over the inner-most
Dapi_def_FFT3D.pbtxt22 Computes the 3-dimensional discrete Fourier transform over the inner-most 3
Dapi_def_FFT.pbtxt22 Computes the 1-dimensional discrete Fourier transform over the inner-most
Dapi_def_IFFT.pbtxt22 Computes the inverse 1-dimensional discrete Fourier transform over the
Dapi_def_IFFT2D.pbtxt22 Computes the inverse 2-dimensional discrete Fourier transform over the
Dapi_def_IFFT3D.pbtxt22 Computes the inverse 3-dimensional discrete Fourier transform over the
Dapi_def_RFFT.pbtxt29 Computes the 1-dimensional discrete Fourier transform of a real-valued signal
Dapi_def_RFFT2D.pbtxt30 Computes the 2-dimensional discrete Fourier transform of a real-valued signal
Dapi_def_RFFT3D.pbtxt30 Computes the 3-dimensional discrete Fourier transform of a real-valued signal
Dapi_def_IRFFT.pbtxt29 Computes the inverse 1-dimensional discrete Fourier transform of a real-valued
Dapi_def_IRFFT2D.pbtxt29 Computes the inverse 2-dimensional discrete Fourier transform of a real-valued
Dapi_def_IRFFT3D.pbtxt29 Computes the inverse 3-dimensional discrete Fourier transform of a real-valued
/external/iproute2/
DREADME.distribution23 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/
DREADME.distribution25 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/
DRELEASE-NOTES.md76 * 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/
Dmtl_glslang_utils.mm113 // 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/
Ddesktop_configuration.mm176 // 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/
DV4L2Device.cpp1709 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/
Dop_hint.py621 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