/external/syslinux/gpxe/src/include/gpxe/ |
iscsi.h | 34 /** The data length (measured in bytes), in network 38 } bytes; member in union:iscsi_segment_lengths 39 /** Ths data length (measured in bytes), in network byte 47 ( (segment_lengths).bytes.ahs_len ) 49 /** The length of the data segment, in bytes, excluding any padding */ 53 /** The padding of the data segment, in bytes */ 55 ( ( 0 - (segment_lengths).bytes.data_len[2] ) & 0x03 ) 466 unsigned char bytes[ sizeof ( struct iscsi_bhs_common ) ]; member in union:iscsi_bhs
|
/external/toybox/toys/pending/ |
dhcp.c | 473 * ip [0..4 bytes depending on mask] 474 * router [4 bytes] 654 int bytes = 0; local 657 if ((bytes = read(state->sockfd, &packet, sizeof(packet))) < 0) { 659 return bytes; 661 if (bytes < (int) (sizeof(packet.iph) + sizeof(packet.udph))) { 665 if (bytes < ntohs(packet.iph.tot_len)) { 669 // ignore any extra garbage bytes 670 bytes = ntohs(packet.iph.tot_len); 675 || ntohs(packet.udph.len) != (uint16_t)(bytes - sizeof(packet.iph))) 1162 int bytes; local [all...] |
fdisk.c | 502 unsigned long long bytes = ((unsigned long long)total_number_sectors << 9); local 503 long mbytes = bytes/1000000; 505 if (mbytes < 10000) xprintf("Disk %s: %lu MB, %llu bytes\n", disk_device, mbytes, bytes); 506 else xprintf("Disk %s: %lu.%lu GB, %llu bytes\n", disk_device, mbytes/1000, (mbytes/100)%10, bytes); 510 xprintf("Units = sectors of 1 * %ld = %ld bytes\n",g_sect_size, g_sect_size); 511 } else xprintf("\nUnits = cylinders of %ld * %ld = %ld bytes\n\n", 769 unsigned long long bytes = (unsigned long long) val * absolute; local 773 bytes += unit/2; // roundin [all...] |
/external/v8/src/interpreter/ |
interpreter-assembler.cc | 265 // Read the most signicant bytecode into bytes[0] and then in order 266 // down to least significant in bytes[count - 1]. 268 compiler::Node* bytes[kMaxCount]; local 273 bytes[i] = Load(machine_type, BytecodeArrayTaggedPointer(), array_offset); 277 Node* result = bytes[--count]; 280 Node* value = Word32Shl(bytes[count], shift); [all...] |
/external/v8/src/ |
value-serializer.cc | 116 // If encodingType == 'y' (raw bytes): 223 uint8_t* ValueSerializer::ReserveRawBytes(size_t bytes) { 225 size_t new_size = old_size + bytes; 1136 Vector<const uint8_t> bytes; local 1163 Vector<const uint8_t> bytes; local 1438 Vector<const uint8_t> bytes; local [all...] |
/external/v8/src/wasm/ |
ast-decoder.cc | 566 static char bytes[kMaxIndent + 1]; local 567 for (int i = 0; i < kMaxIndent; ++i) bytes[i] = ' '; 568 bytes[kMaxIndent] = 0; 570 bytes[stack_.size() * 2] = 0; 572 return bytes; 623 TRACE("wasm-decode %p...%p (module+%d, %d bytes) %s\n", [all...] |
/external/valgrind/coregrind/ |
m_main.c | 139 " than <number> bytes [2000000]\n" 140 " --main-stacksize=<number> set size of main thread's stack (in bytes)\n" 146 " heap blocks (in bytes). [%s]\n" 193 " --avg-transtab-entry-size=<number> avg size in bytes of a translated\n" 197 " (in bytes) [" 245 " heap blocks allocated for Valgrind internal use (in bytes) [4]\n" 1577 HChar bytes [VG_STACK_GUARD_SZB + VG_DEFAULT_STACK_ACTIVE_SZB + VG_STACK_GUARD_SZB]; member in struct:__anon35621 [all...] |
/external/vixl/src/aarch64/ |
macro-assembler-aarch64.cc | 929 uint8_t bytes[sizeof(imm)]; local 930 memcpy(bytes, &imm, sizeof(imm)); 932 // All bytes are either 0x00 or 0xff. 936 if ((bytes[i] != 0) && (bytes[i] != 0xff)) { 948 // Of the 4 bytes, only one byte is non-zero. 951 movi(vd, bytes[i], LSL, i * 8); 956 // Of the 4 bytes, only one byte is not 0xff. 960 mvni(vd, ~bytes[i] & 0xff, LSL, i * 8); 967 movi(vd, bytes[2], MSL, 16) [all...] |
/external/webp/src/enc/ |
picture_csp_enc.c | 31 uint8_t bytes[4]; member in union:__anon36794 33 #define ALPHA_IS_LAST (test_endian.bytes[3] == 0xff) 45 if (alpha[x] != 0xff) return 1; // TODO(skal): check 4/8 bytes at a time. 835 int step, // bytes per pixel 836 int rgb_stride, // bytes per scanline [all...] |
/external/webrtc/talk/media/base/ |
videoframe_unittest.h | 261 int r_pos, g_pos, b_pos, bytes; local 262 if (!GetRgbPacking(fourcc, &r_pos, &g_pos, &b_pos, &bytes)) { 268 if (!ms->ReserveSize(width * height * bytes)) { 278 ms->Write(rgb, bytes, NULL, NULL); 331 int r_pos, g_pos, b_pos, bytes; local 332 if (!GetRgbPacking(fourcc, &r_pos, &g_pos, &b_pos, &bytes)) { 335 int pitch = width * bytes; 350 rgb[0] = start + y * pitch + x * bytes; 351 rgb[1] = rgb[0] + ((x + 1) < width ? bytes : 0); 353 rgb[3] = rgb[2] + ((x + 1) < width ? bytes : 0) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
ImageWallpaper.java | 660 final int bytes = verticesData.length * FLOAT_SIZE_BYTES; local 661 final FloatBuffer triangleVertices = ByteBuffer.allocateDirect(bytes).order( [all...] |
/frameworks/base/services/core/jni/ |
com_android_server_location_GnssLocationProvider.cpp | 1401 jbyte* bytes = reinterpret_cast<jbyte *>(env->GetPrimitiveArrayCritical(data, 0)); local [all...] |
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/test/ |
venc_test.cpp | 1441 int bytes; local [all...] |
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/test/ |
venc_test.cpp | 1443 int bytes = 0, read_bytes = 0; local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
ByteBufferTest.java | 820 byte bytes[] = new byte[2]; 829 buf.get(bytes); 831 assertEquals(bytes2char(bytes, buf.order()), value); 840 buf.get(bytes); 842 assertEquals(bytes2char(bytes, buf.order()), value); 854 buf.get(bytes); 855 assertTrue(Arrays.equals(bytes, char2bytes(value, buf.order()))); 866 buf.get(bytes); 867 assertTrue(Arrays.equals(bytes, char2bytes(value, buf.order()))); 876 byte bytes[] = new byte[8] 1253 assertTrue(Arrays.equals(char2bytes(value, buf.order()), bytes)); local 1289 assertTrue(Arrays.equals(char2bytes(value, buf.order()), bytes)); local 1408 assertTrue(Arrays.equals(double2bytes(value, buf.order()), bytes)); local 1444 assertTrue(Arrays.equals(double2bytes(value, buf.order()), bytes)); local 1551 assertTrue(Arrays.equals(float2bytes(value, buf.order()), bytes)); local 1587 assertTrue(Arrays.equals(float2bytes(value, buf.order()), bytes)); local 1693 assertTrue(Arrays.equals(int2bytes(value, buf.order()), bytes)); local 1729 assertTrue(Arrays.equals(int2bytes(value, buf.order()), bytes)); local 1830 assertTrue(Arrays.equals(long2bytes(value, buf.order()), bytes)); local 1866 assertTrue(Arrays.equals(long2bytes(value, buf.order()), bytes)); local 1967 assertTrue(Arrays.equals(short2bytes(value, buf.order()), bytes)); local 2003 assertTrue(Arrays.equals(short2bytes(value, buf.order()), bytes)); local [all...] |
/packages/apps/Dialer/java/com/android/contacts/common/ |
ContactPhotoManagerImpl.java | 112 * An LRU cache for bitmap holders. The cache contains bytes for photos just as they come from the 120 * bitmaps to save time on decoding them from bytes (the bytes are stored in {@link 176 return value.bytes != null ? value.bytes.length : 0; 206 /** Converts bytes to K bytes, rounding up. Used only for debug log. */ 207 private static String btk(int bytes) { 208 return ((bytes + 1023) / 1024) + "K"; 223 * If necessary, decodes bytes stored in the holder to Bitmap. As long as the bitmap is hel 775 final byte[] bytes; field in class:ContactPhotoManagerImpl.BitmapHolder [all...] |
/packages/apps/Settings/src/com/android/settings/ |
RadioInfo.java | 898 String bytes = r.getString(R.string.radioInfo_display_bytes); local [all...] |
/prebuilts/devtools/tools/lib/ |
commons-compress-1.0.jar | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
pkt_sched.h | 34 __u64 bytes; /* NUmber of enqueues bytes */ member in struct:tc_stats 114 __u32 limit; /* Queue length: bytes for bfifo, packets for pfifo */ 166 unsigned quantum; /* Bytes per round allocated to flow */ 201 __u32 limit; /* HARD maximal queue length (bytes) */ 202 __u32 qth_min; /* Min average length threshold (bytes) */ 203 __u32 qth_max; /* Max average length threshold (bytes) */ 237 __u32 limit; /* HARD maximal queue length (bytes) */ 238 __u32 qth_min; /* Min average length threshold (bytes) */ 239 __u32 qth_max; /* Max average length threshold (bytes) */ [all...] |
xfrm.h | 80 __u64 bytes; member in struct:xfrm_lifetime_cur
|
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0/ |
lint-tests-25.0.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0-alpha7/ |
lint-tests-25.0.0-alpha7.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0-alpha9/ |
lint-tests-25.0.0-alpha9.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0-beta2/ |
lint-tests-25.0.0-beta2.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-tests/25.0.0-beta5/ |
lint-tests-25.0.0-beta5.jar | |