Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:biasRange
(Results
1 - 3
of
3
) sorted by relevance
/foundation/distributedhardware/distributed_camera/test/distributedcameraclienttest/
H
A
D
dcamera_client_demo.cpp
245
std::vector<float>
biasRange
;
in ConfigFocusFlashAndExposure()
local
246
int32_t rv = g_captureSession->GetExposureBiasRange(
biasRange
);
in ConfigFocusFlashAndExposure()
251
if (!
biasRange
.empty()) {
in ConfigFocusFlashAndExposure()
252
DHLOGI("Distributed Camera Demo: get %{public}d exposure compensation range",
biasRange
.size());
in ConfigFocusFlashAndExposure()
253
exposureValue =
biasRange
[0];
in ConfigFocusFlashAndExposure()
/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/client/test/sample/
H
A
D
main.cpp
241
std::vector<float>
biasRange
;
in ConfigFocusAndExposure()
local
242
int32_t rv = g_captureSession->GetExposureBiasRange(
biasRange
);
in ConfigFocusAndExposure()
247
if (!
biasRange
.empty()) {
in ConfigFocusAndExposure()
248
DHLOGI("Distributed Camera Demo: get %{public}zu exposure compensation range",
biasRange
.size());
in ConfigFocusAndExposure()
249
exposureValue =
biasRange
[0];
in ConfigFocusAndExposure()
/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/
H
A
D
capture_session.cpp
1792
std::vector<float>
biasRange
= inputDeviceInfo->GetExposureBiasRange();
in SetExposureBias()
local
1793
CHECK_ERROR_RETURN_RET_LOG(
biasRange
.empty(), CameraErrorCode::OPERATION_NOT_ALLOWED,
in SetExposureBias()
1795
if (exposureValue <
biasRange
[minIndex]) {
in SetExposureBias()
1797
"%{public}f is lesser than minimum bias: %{public}f", exposureValue,
biasRange
[minIndex]);
in SetExposureBias()
1798
exposureValue =
biasRange
[minIndex];
in SetExposureBias()
1799
} else if (exposureValue >
biasRange
[maxIndex]) {
in SetExposureBias()
1801
"%{public}f is greater than maximum bias: %{public}f", exposureValue,
biasRange
[maxIndex]);
in SetExposureBias()
1802
exposureValue =
biasRange
[maxIndex];
in SetExposureBias()
Completed in 12 milliseconds