| /src/external/gpl2/texinfo/dist/lib/ |
| xmalloc.c | 35 to hold BYTES number of bytes. If the memory cannot be allocated, 38 xmalloc (size_t bytes) 40 void *temp = malloc (bytes); 48 xrealloc (void *pointer, size_t bytes) 53 temp = malloc (bytes); 55 temp = realloc (pointer, bytes);
|
| /src/external/gpl3/gcc/dist/libdecnumber/dpd/ |
| decimal128Local.h | 32 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] |= ((unsigned) (b) << 7); } 36 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] &= ~0x80; } 40 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] ^= 0x80; }
|
| /src/external/gpl3/gcc.old/dist/libdecnumber/dpd/ |
| decimal128Local.h | 32 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] |= ((unsigned) (b) << 7); } 36 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] &= ~0x80; } 40 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] ^= 0x80; }
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| mi-read-memory.c | 1 static char bytes[256]; variable 9 for (i = 0; i < sizeof (bytes); i++) 11 bytes[i] = i;
|
| /src/external/gpl3/gdb/dist/libdecnumber/dpd/ |
| decimal128Local.h | 32 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] |= ((unsigned) (b) << 7); } 36 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] &= ~0x80; } 40 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] ^= 0x80; }
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/ |
| mi-read-memory.c | 1 static char bytes[256]; variable 9 for (i = 0; i < sizeof (bytes); i++) 11 bytes[i] = i;
|
| /src/external/gpl3/gdb.old/dist/libdecnumber/dpd/ |
| decimal128Local.h | 32 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] |= ((unsigned) (b) << 7); } 36 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] &= ~0x80; } 40 { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] ^= 0x80; }
|
| /src/external/bsd/kyua-cli/dist/utils/ |
| units_test.cpp | 45 ATF_REQUIRE_EQ("2.00T", units::bytes(2 * TB).format()); 46 ATF_REQUIRE_EQ("45.12T", units::bytes(45 * TB + 120 * GB).format()); 56 ATF_REQUIRE_EQ("5.00G", units::bytes(5 * GB).format()); 57 ATF_REQUIRE_EQ("745.96G", units::bytes(745 * GB + 980 * MB).format()); 67 ATF_REQUIRE_EQ("1.00M", units::bytes(1 * MB).format()); 68 ATF_REQUIRE_EQ("1023.50M", units::bytes(1023 * MB + 512 * KB).format()); 77 ATF_REQUIRE_EQ("3.00K", units::bytes(3 * KB).format()); 78 ATF_REQUIRE_EQ("1.33K", units::bytes(1 * KB + 340).format()); 85 ATF_REQUIRE_EQ("0", units::bytes().format()); 86 ATF_REQUIRE_EQ("0", units::bytes(0).format()) 185 units::bytes bytes; local 186 input >> bytes; local 197 units::bytes bytes; local 198 input >> bytes; local 214 input >> bytes; local [all...] |
| memory.hpp | 40 units::bytes physical_memory(void);
|
| units.hpp | 64 /// Representation of a bytes quantity. 66 /// The purpose of this class is to represent an amount of bytes in a semantic 72 class bytes { class in namespace:utils::units 73 /// Raw representation, in bytes, of the quantity. 77 bytes(void); 78 explicit bytes(const uint64_t); 80 static bytes parse(const std::string&); 87 std::istream& operator>>(std::istream&, bytes&); 88 std::ostream& operator<<(std::ostream&, const bytes&);
|
| /src/sys/arch/m68k/m68k/ |
| sunos_sigcode.s | 48 movl 12(%sp),%a0 | signal handler addr (4 bytes) 49 jsr (%a0) | call signal handler (2 bytes) 50 addql #4,%sp | pop signal number (2 bytes) 51 trap #1 | special syscall entry (2 bytes) 52 movl %d0,4(%sp) | save errno (4 bytes) 53 moveq #1,%d0 | syscall == exit (2 bytes) 54 trap #0 | exit(errno) (2 bytes)
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
| PDBSymbolCustom.cpp | 20 void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) { 21 RawSymbol->getDataBytes(bytes);
|
| /src/external/cddl/dtracetoolkit/dist/Bin/ |
| readbytes.d | 3 * readbytes.d - read bytes by process name. DTrace OneLiner. 10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
|
| writebytes.d | 3 * writebytes.d - write bytes by process name. DTrace OneLiner. 10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
|
| /src/external/cddl/dtracetoolkit/dist/Proc/ |
| readbytes.d | 3 * readbytes.d - read bytes by process name. DTrace OneLiner. 10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
|
| writebytes.d | 3 * writebytes.d - write bytes by process name. DTrace OneLiner. 10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
|
| /src/external/bsd/libbind/dist/bsd/ |
| readv.c | 29 int bytes = read(fd, vp->iov_base, vp->iov_len); local 31 if (bytes < 0) 33 count += bytes; 34 if (bytes != vp->iov_len)
|
| /src/external/bsd/zstd/dist/contrib/pzstd/ |
| SkippableFrame.cpp | 23 /* static */ std::size_t SkippableFrame::tryRead(ByteRange bytes) { 24 if (bytes.size() < SkippableFrame::kSize || 25 MEM_readLE32(bytes.begin()) != kSkippableFrameMagicNumber || 26 MEM_readLE32(bytes.begin() + 4) != kFrameContentsSize) { 29 return MEM_readLE32(bytes.begin() + 8);
|
| /src/external/gpl3/gdb/dist/readline/readline/ |
| xmalloc.c | 52 to hold BYTES number of bytes. If the memory cannot be allocated, 55 xmalloc (size_t bytes) 59 temp = malloc (bytes); 66 xrealloc (PTR_T pointer, size_t bytes) 70 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
|
| /src/external/gpl3/gdb.old/dist/readline/readline/ |
| xmalloc.c | 52 to hold BYTES number of bytes. If the memory cannot be allocated, 55 xmalloc (size_t bytes) 59 temp = malloc (bytes); 66 xrealloc (PTR_T pointer, size_t bytes) 70 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
|
| /src/sys/lib/libsa/ |
| byteorder.c | 42 uint8_t bytes[2]; member in union:__anon6915 47 uint8_t bytes[4]; member in union:__anon6916 62 un.bytes[1] = val & 0xff; 63 un.bytes[0] = (val >> 8) & 0xff; 73 un.bytes[0] = val & 0xff; 74 un.bytes[1] = (val >> 8) & 0xff; 86 return ((un.bytes[0] << 8) | 87 un.bytes[1]); 97 return ((un.bytes[1] << 8) | 98 un.bytes[0]) [all...] |
| /src/external/gpl3/gdb.old/dist/sim/cris/ |
| rvdummy.c | 152 bytes of BUF; if not a match, write error message to stderr and 206 static unsigned char bytes[1024]; local 209 memset (bytes, 0, sizeof bytes); 234 bytes[nbytes++] = data; 237 expect_input (fd, bytes, nbytes, nbytes); 242 printf ("%02x", bytes[i]); 256 bytes[nbytes++] = data; 262 send_output (fd, bytes, nbytes); 267 printf ("%02x", bytes[i]) [all...] |
| /src/external/gpl3/gdb/dist/sim/cris/ |
| rvdummy.c | 152 bytes of BUF; if not a match, write error message to stderr and 206 static unsigned char bytes[1024]; local 209 memset (bytes, 0, sizeof bytes); 234 bytes[nbytes++] = data; 237 expect_input (fd, bytes, nbytes, nbytes); 242 printf ("%02x", bytes[i]); 256 bytes[nbytes++] = data; 262 send_output (fd, bytes, nbytes); 267 printf ("%02x", bytes[i]) [all...] |
| /src/lib/libc/gen/ |
| humanize_number.c | 47 humanize_number(char *buf, size_t len, int64_t bytes, 94 if (bytes < 0) { 97 if (-bytes < INT64_MAX / 100) 98 bytes *= -100; 100 bytes = -bytes; 107 if (bytes < INT64_MAX / 100) 108 bytes *= 100; 146 for (i = 0; bytes >= max - 50 && i < maxscale; i++) 147 bytes /= divisor [all...] |
| /src/external/lgpl3/gmp/dist/mpz/ |
| out_raw.c | 62 mp_size_t xsize, abs_xsize, bytes, i; local 71 bytes = (abs_xsize * GMP_NUMB_BITS + 7) / 8; 72 tsize = ROUND_UP_MULTIPLE ((unsigned) 4, GMP_LIMB_BYTES) + bytes; 77 if (bytes != 0) 79 bp += bytes; 98 /* strip high zero bytes (without fetching from bp) */ 102 bytes -= zeros; 108 ASSERT_CODE (char *bp_orig = bp - bytes); 145 bytes--; 150 /* total bytes to be written * [all...] |