HomeSort by relevance Sort by last modified time
    Searched defs:pad (Results 101 - 125 of 451) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/linux/
kernel.h 26 unsigned short pad; member in struct:sysinfo
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/
kernel.h 26 unsigned short pad; member in struct:sysinfo
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/
kernel.h 26 unsigned short pad; member in struct:sysinfo
  /external/iptables/include/linux/
kernel.h 23 unsigned short pad; /* explicit padding for m68k */ member in struct:sysinfo
  /external/kernel-headers/original/asm-mips/
fcntl.h 52 long pad[4]; member in struct:flock
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmsynth.h 59 EAS_U8 pad; /* pad to 16-bits */ member in struct:s_operator_tag
71 EAS_I8 pad; /* reserved to maintain alignment */ member in struct:s_fm_voice_tag
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmsynth.h 59 EAS_U8 pad; /* pad to 16-bits */ member in struct:s_operator_tag
71 EAS_I8 pad; /* reserved to maintain alignment */ member in struct:s_fm_voice_tag
  /external/valgrind/main/none/tests/s390x/
clcl.c 14 uint8_t pad; member in struct:__anon14402
64 result.pad = (regs.r2p1 & 0xFF000000u) >> 24;
74 void *addr2, uint32_t len2, uint32_t pad)
81 assert((pad & 0xFF) == pad); /* an 8-byte value */
89 r2p1 = len2 | (pad << 24);
101 /* Check pad value */
102 if (result1.pad != pad)
103 printf("FAIL: pad byte modified (unused bits 0)\n")
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
Opcode.h 237 unsigned pad = width - strlen(opcodeNames[op]); local
238 pad = std::min(pad, PADDING_STRING_LENGTH);
239 return PADDING_STRING + PADDING_STRING_LENGTH - pad;
  /external/wpa_supplicant_8/src/tls/
pkcs5.c 175 u8 *eb, pad; local
212 pad = eb[enc_data_len - 1];
213 if (pad > 8) {
214 wpa_printf(MSG_INFO, "PKCS #5: Invalid PS octet 0x%x", pad);
218 for (i = enc_data_len - pad; i < enc_data_len; i++) {
219 if (eb[i] != pad) {
221 eb + enc_data_len - pad, pad);
228 eb, enc_data_len - pad);
230 *data_len = enc_data_len - pad;
    [all...]
tlsv1_record.c 236 size_t pad; local
237 pad = (len + 1) % rl->iv_size;
238 if (pad)
239 pad = rl->iv_size - pad;
240 if (pos + pad + 1 > buf + buf_size) {
245 os_memset(pos, pad, pad + 1);
246 pos += pad + 1;
394 " (no pad)");
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
kernel.h 20 unsigned short pad; /* explicit padding for m68k */ member in struct:sysinfo
lock_dlm_plock.h 29 __u8 pad; member in struct:gdlm_plock_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
kernel.h 20 unsigned short pad; /* explicit padding for m68k */ member in struct:sysinfo
lock_dlm_plock.h 29 __u8 pad; member in struct:gdlm_plock_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
kernel.h 20 unsigned short pad; /* explicit padding for m68k */ member in struct:sysinfo
lock_dlm_plock.h 29 __u8 pad; member in struct:gdlm_plock_info
  /bionic/libc/kernel/arch-x86/asm/
desc_32.h 34 unsigned short pad; member in struct:Xgt_desc_struct
  /development/ndk/platforms/android-9/arch-x86/include/asm/
desc_32.h 34 unsigned short pad; member in struct:Xgt_desc_struct
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DateWidgets1.java 124 .append(pad(mHour)).append(":")
125 .append(pad(mMinute)));
150 private static String pad(int c) { method in class:DateWidgets1
  /external/chromium/crypto/
rsa_private_key.cc 231 int pad = expected_size - temp.size(); local
235 pad++;
241 while (pad) {
243 pad--;
  /external/dropbear/
buffer.c 270 unsigned int len, pad = 0; local
286 /* if the top bit of MSB is set, we need to pad */
287 pad = (len%8 == 0) ? 1 : 0;
298 if (pad) {
301 if (mp_to_unsigned_bin(mp, buf_getwriteptr(buf, len-pad)) != MP_OKAY) {
304 buf_incrwritepos(buf, len-pad);
  /external/e2fsprogs/lib/ext2fs/
dirhash.c 144 __u32 pad, val; local
149 pad = (__u32)len | ((__u32)len << 8);
150 pad |= pad << 16;
152 val = pad;
157 val = pad;
166 val = pad;
173 *buf++ = pad;
  /external/elfutils/lib/
md5.c 47 /* This array contains the bytes used to pad the buffer to the next
97 size_t pad; local
104 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
105 memcpy (&ctx->buffer[bytes], fillbuf, pad);
108 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
109 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
113 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
sha1.c 47 /* This array contains the bytes used to pad the buffer to the next
98 size_t pad; local
105 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
106 memcpy (&ctx->buffer[bytes], fillbuf, pad);
109 *(sha1_uint32 *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) |
111 *(sha1_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3);
114 sha1_process_block (ctx->buffer, bytes + pad + 8, ctx);

Completed in 1105 milliseconds

1 2 3 45 6 7 8 91011>>