OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sizeInBits
(Results
1 - 9
of
9
) sorted by null
/external/parameter-framework/upstream/parameter/
FloatingPointParameterType.cpp
88
size_t
sizeInBits
= 32;
89
xmlElement.getAttribute("Size",
sizeInBits
);
93
if (
sizeInBits
!= sizeof(float) * CHAR_BIT) {
95
serializingContext.setError("Unsupported size (" + std::to_string(
sizeInBits
) + ") for " +
102
setSize(
sizeInBits
/ CHAR_BIT);
EnumParameterType.cpp
80
size_t
sizeInBits
= 0;
81
if (not xmlElement.getAttribute("Size",
sizeInBits
)) {
86
setSize(
sizeInBits
/ 8);
IntegerParameterType.cpp
100
size_t
sizeInBits
= 0;
101
xmlElement.getAttribute("Size",
sizeInBits
);
104
setSize(
sizeInBits
/ 8);
111
sizeInBits
--;
115
_uiMin = 1U <<
sizeInBits
;
120
_uiMax = (1U <<
sizeInBits
) - 1;
132
_uiMax = ~0U >> (8 * sizeof(size_t) -
sizeInBits
);
ParameterType.cpp
204
size_t
sizeInBits
= getSize() * 8;
206
uint32_t uiMask = (1 <<
sizeInBits
) - 1;
FixedPointParameterType.cpp
94
size_t
sizeInBits
= 0;
95
xmlElement.getAttribute("Size",
sizeInBits
);
102
if (
sizeInBits
< getUtilSizeInBits()) {
114
setSize(
sizeInBits
/ 8);
/external/llvm/lib/Support/
APFloat.cpp
58
unsigned int
sizeInBits
;
869
return semantics.
sizeInBits
;
[
all
...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
ByteArrayHelpers.java
125
int
sizeInBits
;
127
sizeInBits
= Integer.SIZE;
129
sizeInBits
= Float.SIZE;
131
sizeInBits
= Double.SIZE;
133
sizeInBits
= Short.SIZE;
135
sizeInBits
= Character.SIZE;
137
sizeInBits
= Long.SIZE;
139
sizeInBits
= Byte.SIZE;
144
return toByteArray(array,
sizeInBits
);
/external/junit-params/lib/
assertj-core-1.7.1.jar
/prebuilts/tools/common/m2/repository/org/assertj/assertj-core/2.0.0/
assertj-core-2.0.0.jar
Completed in 9880 milliseconds