HomeSort by relevance Sort by last modified time
    Searched full:sizeinbytes (Results 1 - 25 of 232) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium-trace/catapult/tracing/tracing/model/
memory_allocator_dump_test.html 24 var sizeInBytes = tr.b.Unit.byName.sizeInBytes;
132 [new ScalarNumeric(sizeInBytes, 10),
133 new ScalarNumeric(sizeInBytes, 20),
134 new ScalarNumeric(sizeInBytes, 40)],
135 70, sizeInBytes);
138 new ScalarNumeric(sizeInBytes, 16),
140 new ScalarNumeric(sizeInBytes, 32),
142 48, sizeInBytes);
146 [new ScalarNumeric(sizeInBytes, 10)
    [all...]
vm_region_test.html 22 sizeInBytes: 336,
66 assert.strictEqual(node.sizeInBytes, expectedStructure.sizeInBytes);
104 sizeInBytes: 16,
204 sizeInBytes: 16,
220 sizeInBytes: 16,
231 sizeInBytes: 16,
253 sizeInBytes: 16,
262 sizeInBytes: 16,
298 // *not* trigger building the full tree (but the total sizeInBytes an
    [all...]
process_memory_dump_test.html 40 sizeInBytes: opt_sizeInBytes,
195 assert.strictEqual(vmRegions.sizeInBytes, 4976);
205 sizeInBytes: 6000,
214 sizeInBytes: -1024,
324 assert.strictEqual(pmds[0].vmRegions.sizeInBytes, 5700);
331 sizeInBytes: 6000,
338 sizeInBytes: -300,
370 assert.strictEqual(vmRegions.sizeInBytes, 9000);
379 sizeInBytes: 10000,
388 sizeInBytes: -1000
    [all...]
vm_region.html 25 function VMRegion(startAddress, sizeInBytes, protectionFlags,
28 this.sizeInBytes = sizeInBytes;
61 dict.sizeInBytes,
86 this.sizeInBytes = undefined;
367 var regionSizeInBytes = region.sizeInBytes;
369 this.sizeInBytes = (this.sizeInBytes || 0) + regionSizeInBytes;
  /external/chromium-trace/catapult/tracing/tracing/base/
unit_test.html 87 test('sizeInBytes', function() {
109 checkSizeUnit(Unit.byName.sizeInBytes, {
110 unitName: 'sizeInBytes',
111 asJSON: 'sizeInBytes',
113 baseUnit: Unit.byName.sizeInBytes,
122 baseUnit: Unit.byName.sizeInBytes,
131 baseUnit: Unit.byName.sizeInBytes,
142 baseUnit: Unit.byName.sizeInBytes,
151 baseUnit: Unit.byName.sizeInBytes,
160 baseUnit: Unit.byName.sizeInBytes,
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfiling.c 26 /* Return the number of bytes needed to add to SizeInBytes to make it
30 __llvm_profile_get_num_padding_bytes(uint64_t SizeInBytes) {
31 return 7 & (sizeof(uint64_t) - SizeInBytes % sizeof(uint64_t));
  /external/chromium-trace/catapult/tracing/tracing/value/
numeric_test.html 24 var unit = tr.b.Unit.byName.sizeInBytes;
29 var unit = tr.b.Unit.byName.sizeInBytes;
  /packages/apps/Camera2/src/com/android/camera/data/
VideoItemData.java 33 Size dimensions, long sizeInBytes, int orientation,
36 sizeInBytes, orientation, location);
FilmstripItemData.java 57 long sizeInBytes,
68 mSizeInBytes = sizeInBytes;
170 sb.append(",sizeInBytes:");
266 public Builder withSizeInBytes(long sizeInBytes) {
267 mSizeInBytes = sizeInBytes;
PhotoDataFactory.java 65 long sizeInBytes = c.getLong(PhotoDataQuery.COL_SIZE);
81 sizeInBytes,
VideoDataFactory.java 67 long sizeInBytes = c.getLong(VideoDataQuery.COL_SIZE);
84 sizeInBytes,
  /external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioTrack.java 81 final int sizeInBytes = byteBuffer.capacity();
87 nativeGetPlayoutData(sizeInBytes, nativeAudioTrack);
91 assertTrue(sizeInBytes <= byteBuffer.remaining());
94 bytesWritten = writeOnLollipop(audioTrack, byteBuffer, sizeInBytes);
96 bytesWritten = writePreLollipop(audioTrack, byteBuffer, sizeInBytes);
98 if (bytesWritten != sizeInBytes) {
124 private int writeOnLollipop(AudioTrack audioTrack, ByteBuffer byteBuffer, int sizeInBytes) {
125 return audioTrack.write(byteBuffer, sizeInBytes, AudioTrack.WRITE_BLOCKING);
128 private int writePreLollipop(AudioTrack audioTrack, ByteBuffer byteBuffer, int sizeInBytes) {
129 return audioTrack.write(byteBuffer.array(), byteBuffer.arrayOffset(), sizeInBytes);
    [all...]
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCoderBitVector.h 22 int32_t sizeInBytes();
BC_QRCoderBitVector.cpp 56 int32_t CBC_QRCoderBitVector::sizeInBytes() {
111 int32_t sizeInBytes = (m_sizeInBits + 7) >> 3;
112 for (int32_t i = 0; i < sizeInBytes; ++i) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
clfsmgmt.h 53 ULONG SizeInBytes;
121 ULONG SizeInBytes;
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
memory_dump_vm_regions_details_pane_test.html 49 sizeInBytes: 536870912,
59 sizeInBytes: 2097152,
67 sizeInBytes: 2147483648,
77 sizeInBytes: 2147483648,
88 sizeInBytes: 100,
100 sizeInBytes: 200,
125 sizeInBytes: 536870912,
135 sizeInBytes: 536870912,
144 sizeInBytes: 2147483648,
154 sizeInBytes: 2147483648
    [all...]
  /frameworks/base/media/jni/
android_media_MediaSync.h 41 status_t updateQueuedAudioData(int sizeInBytes, int64_t presentationTimeUs);
  /developers/build/prebuilts/gradle/AutoBackupForApps/Application/src/main/java/com/example/android/autobackupsample/
AddFileActivity.java 223 String sizeInBytes) {
224 long size = Long.valueOf(sizeInBytes);
262 file.getAbsolutePath(), sizeInBytes);
300 long sizeInBytes = 0;
302 sizeInBytes = Long.valueOf(sizeInBytesParamValue);
311 if (sizeInBytes < 0) {
313 Log.d(TAG, "Invalid file size: " + sizeInBytes);
  /developers/samples/android/content/AutoBackupForApps/Application/src/main/java/com/example/android/autobackupsample/
AddFileActivity.java 223 String sizeInBytes) {
224 long size = Long.valueOf(sizeInBytes);
262 file.getAbsolutePath(), sizeInBytes);
300 long sizeInBytes = 0;
302 sizeInBytes = Long.valueOf(sizeInBytesParamValue);
311 if (sizeInBytes < 0) {
313 Log.d(TAG, "Invalid file size: " + sizeInBytes);
  /development/samples/browseable/AutoBackupForApps/src/com.example.android.autobackupsample/
AddFileActivity.java 223 String sizeInBytes) {
224 long size = Long.valueOf(sizeInBytes);
262 file.getAbsolutePath(), sizeInBytes);
300 long sizeInBytes = 0;
302 sizeInBytes = Long.valueOf(sizeInBytesParamValue);
311 if (sizeInBytes < 0) {
313 Log.d(TAG, "Invalid file size: " + sizeInBytes);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
SuperFloppyFormatter.java 305 public static FatType fatTypeFromSize(long sizeInBytes) {
306 final long sizeInMb = sizeInBytes / (1024 * 1024);
312 public static int clusterSizeFromSize(long sizeInBytes, int sectorSize){
313 switch(fatTypeFromSize(sizeInBytes)) {
315 return sectorsPerCluster12(sizeInBytes, sectorSize);
317 return sectorsPerCluster16FromSize(sizeInBytes, sectorSize);
319 return sectorsPerCluster32FromSize(sizeInBytes, sectorSize);
  /cts/tests/tests/media/src/android/media/cts/
AudioHelper.java 283 public int read(byte[] audioData, int offsetInBytes, int sizeInBytes) {
287 int samples = super.read(audioData, offsetInBytes, sizeInBytes);
296 public int read(byte[] audioData, int offsetInBytes, int sizeInBytes, int readMode) {
300 int samples = super.read(audioData, offsetInBytes, sizeInBytes, readMode);
351 public int read(ByteBuffer audioBuffer, int sizeInBytes) {
352 int bytes = super.read(audioBuffer, sizeInBytes);
368 public int read(ByteBuffer audioBuffer, int sizeInBytes, int readMode) {
369 int bytes = super.read(audioBuffer, sizeInBytes, readMode);
  /art/runtime/
imtable.h 69 constexpr static size_t SizeInBytes(size_t pointer_size) {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/glacier/
test_layer2.py 42 "SizeInBytes": 78088912,
49 'VaultList': [{'SizeInBytes': 0, 'LastInventoryDate': None,
53 {'SizeInBytes': 0, 'LastInventoryDate': None,
61 'VaultList': [{'SizeInBytes': 0, 'LastInventoryDate': None,
65 {'SizeInBytes': 0, 'LastInventoryDate': None,
72 'VaultList': [{'SizeInBytes': 0, 'LastInventoryDate': None,
76 {'SizeInBytes': 0, 'LastInventoryDate': None,
  /external/llvm/lib/IR/
User.cpp 94 intptr_t SizeInBytes;
107 assert(DI->SizeInBytes != 0 && "Should not have had a descriptor otherwise!");
110 reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes, DI->SizeInBytes);
140 DescInfo->SizeInBytes = DescBytes;
187 uint8_t *Storage = reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes;

Completed in 1033 milliseconds

1 2 3 4 5 6 7 8 910