/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | fdopen.c | 68 int flags, oflags, fdflags, tmp; local 78 tmp = fdflags & O_ACCMODE; 79 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) {
|
H A D | tempnam.c | 69 gentemp(char *name, size_t len, const char *tmp, const char *pfx) argument 71 (void)snprintf(name, len, "%s%s%sXXXX", tmp, trailsl(tmp), pfx); 80 const char *tmp; local 86 pfx = "tmp."; 88 if ((tmp = getenv("TMPDIR")) != NULL && 89 (f = gentemp(name, (size_t)MAXPATHLEN, tmp, pfx)) != NULL)
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prstdio.c | 70 PRInt32 tmp; local 74 tmp = PR_Write(fd, msg + last, idx - last); 75 if (tmp >= 0) { 76 rv += tmp; 89 tmp = PR_Write(fd, "\r", 1); 90 if (tmp >= 0) { 91 rv += tmp;
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | system.c | 55 PRIntn tmp = (PRIntn)*cmd + 1; local 56 *cmd = (PRSysInfo)tmp; 57 return (PRSysInfo)tmp;
|
H A D | forktest.c | 82 PRInt32 tmp = (PRInt32)arg; local 108 addr.inet.port = PR_htons((PRInt16)tmp);
|
/vbox/src/recompiler/ |
H A D | gen-icount.h | 38 TCGv_i32 tmp = tcg_const_i32(1); local 39 tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUState, can_do_io)); 40 tcg_temp_free_i32(tmp); 45 TCGv_i32 tmp = tcg_const_i32(0); local 46 tcg_gen_st_i32(tmp, cpu_env, offsetof(CPUState, can_do_io)); 47 tcg_temp_free_i32(tmp);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | inet_net_pton.c | 141 int tmp; local 173 tmp = 0; 177 tmp *= 10; 178 tmp += n; 179 if (tmp > 255) 185 *dst++ = (u_char) tmp;
|
H A D | map_v4v6.c | 97 char tmp[INADDRSZ]; local 101 bcopy(src, tmp, INADDRSZ); 108 bcopy(tmp, (void*)p, INADDRSZ);
|
H A D | inet_pton.c | 126 u_char tmp[NS_INADDRSZ], *tp; local 130 *(tp = tmp) = 0; 156 memcpy(dst, tmp, NS_INADDRSZ); 181 u_char tmp[NS_IN6ADDRSZ], *tp, *endp, *colonp; local 186 memset((tp = tmp), '\0', NS_IN6ADDRSZ); 255 memcpy(dst, tmp, NS_IN6ADDRSZ);
|
H A D | ns_ttl.c | 130 u_long ttl, tmp; local 134 tmp = 0; 141 tmp *= 10; 142 tmp += (ch - '0'); 151 case 'W': tmp *= 7; 152 case 'D': tmp *= 24; 153 case 'H': tmp *= 60; 154 case 'M': tmp *= 60; 158 ttl += tmp; 159 tmp 181 char tmp[50]; local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/arch/x86/include/ipxe/ |
H A D | pcibios.h | 47 uint32_t tmp; local 50 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_BYTE | where, &tmp ); 51 *value = tmp; 67 uint32_t tmp; local 70 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_WORD | where, &tmp ); 71 *value = tmp;
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | base64.c | 57 unsigned int tmp; local 60 tmp = ( ( raw_bytes[ bit / 8 ] << ( bit % 8 ) ) | 62 tmp = ( ( tmp >> 2 ) & 0x3f ); 63 *(encoded_bytes++) = base64[tmp];
|
H A D | device.c | 95 struct root_device *tmp; local 102 list_for_each_entry_safe ( rootdev, tmp, &devices, dev.siblings ) {
|
H A D | menu.c | 145 struct menu_item *tmp; local 151 list_for_each_entry_safe ( item, tmp, &menu->items, list ) {
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/ |
H A D | eisa.c | 162 struct eisa_device *tmp; local 164 list_for_each_entry_safe ( eisa, tmp, &rootdev->dev.children,
|
H A D | mca.c | 157 struct mca_device *tmp; local 159 list_for_each_entry_safe ( mca, tmp, &rootdev->dev.children,
|
H A D | isa.c | 153 struct isa_device *tmp; local 155 list_for_each_entry_safe ( isa, tmp, &rootdev->dev.children,
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/ |
H A D | inet_ntop.c | 105 char tmp[sizeof "255.255.255.255"]; local 111 l = snprintf(tmp, sizeof(tmp), "%u.%u.%u.%u", 117 //strlcpy(dst, tmp, size); 118 strncpyX(dst, tmp, (size_t)size); 138 char tmp[sizeof "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"]; local 184 tp = tmp; 185 ep = tmp + sizeof(tmp); 229 if ((size_t)(tp - tmp) > siz [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/ |
H A D | randm.c | 120 u_char tmp[16]; local 128 MD5Final(tmp, &md5); 130 memcpy(buf, tmp, n);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/ |
H A D | randm.c | 126 u_char tmp[16]; local 134 MD5Final(tmp, &md5); 136 MEMCPY(buf, tmp, n);
|
/vbox/src/VBox/Main/src-server/ |
H A D | MediumFormatImpl.cpp | 218 uint64_t tmp = m.capabilities; local 219 tmp &= 1ULL << i; 220 if (tmp) 221 aCapabilities[cCapabilities++] = (MediumFormatCapabilities_T)tmp;
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | entropy.h | 103 uint8_t *tmp, size_t tmp_len ); 136 uint8_t *tmp = ( ( tmp_len > max_len ) ? tmp_buf : data ); local 185 * 4. tmp = a fixed n-bit value, such as 0^n 191 * 5.4. tmp = tmp XOR df ( ( nonce || entropy_bitstring ), n ) 200 if ( ( rc = get_entropy_input_tmp ( num_samples, tmp, tmp_len ) ) != 0 ) 203 /* 6. If ( n < min_length ), then tmp = tmp || 0^(min_length-n) 204 * 7. If ( n > max_length ), then tmp = df ( tmp, max_lengt [all...] |
H A D | rsa.h | 76 void *tmp; member in struct:rsa_context
|
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | list_test.c | 80 char *tmp; local 83 tmp = found; 85 *(tmp++) = entry->label; 86 *tmp = '\0'; 89 tmp = &found_rev[ sizeof ( found_rev ) - 1 ]; 90 *tmp = '\0'; 92 *(--tmp) = entry->label; 166 struct list_test *tmp; local 419 list_for_each_entry_safe ( pos, tmp, list, list ) {
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/linux/ |
H A D | linux.c | 97 struct linux_device *tmp; local 99 list_for_each_entry_safe(device, tmp, &rootdev->dev.children, dev.siblings) {
|