OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:expectedBytes
(Results
1 - 6
of
6
) sorted by null
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Latin1Converter.java
75
int
expectedBytes
= 0;
95
expectedBytes
= -1;
97
for (;
expectedBytes
< 8 && (test & 0x80) == 0x80; test = test << 1)
99
expectedBytes
++;
113
if (
expectedBytes
> 0 && (b & 0xC0) == 0x80)
117
expectedBytes
--;
119
if (
expectedBytes
== 0)
/system/vold/
MoveTask.cpp
86
uint64_t
expectedBytes
= GetTreeBytes(path);
118
((deltaFreeBytes * stepProgress) /
expectedBytes
), 0, stepProgress));
128
uint64_t
expectedBytes
= GetTreeBytes(fromPath);
131
if (
expectedBytes
> startFreeBytes) {
132
LOG(ERROR) << "Data size " <<
expectedBytes
<< " is too large to fit in free space "
169
((deltaFreeBytes * stepProgress) /
expectedBytes
), 0, stepProgress));
/libcore/ojluni/src/test/java/time/tck/java/time/
AbstractTCKTest.java
112
protected static void assertSerializedBySer(Object object, byte[]
expectedBytes
, byte[]... matches) throws Exception {
135
if (
expectedBytes
.length < 256) {
137
assertEquals(dis.readUnsignedByte(),
expectedBytes
.length, "blockdata length incorrect");
140
assertEquals(dis.readInt(),
expectedBytes
.length, "blockdatalong length incorrect");
142
byte[] input = new byte[
expectedBytes
.length];
144
assertEquals(input,
expectedBytes
);
/frameworks/rs/tests/java_api/LivePreview/src/com/android/rs/livepreview/
CameraPreviewActivity.java
290
int
expectedBytes
= mPreviewSize.width * mPreviewSize.height *
293
mCamera.addCallbackBuffer(new byte[
expectedBytes
]);
352
int
expectedBytes
= mPreviewSize.width * mPreviewSize.height *
355
if (
expectedBytes
!= data.length) {
/packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java
370
long
expectedBytes
= mCacheStorageInfo.getExpectedUsedBytes();
384
(int) (
expectedBytes
* PROGRESS_BAR_MAX / totalBytes));
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java
626
int
expectedBytes
;
636
expectedBytes
= ySize + uvSize * 2;
641
expectedBytes
= mPreviewSize.width * mPreviewSize.height *
645
if (
expectedBytes
!= data.length) {
649
expectedBytes
+ ", but got " +
Completed in 474 milliseconds