HomeSort by: relevance | last modified time | path
    Searched defs:block (Results 1 - 25 of 145) sorted by relevancy

1 2 3 4 5 6

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/
udivmodsi4.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
109 /* Last block, no need to update r3 or r4. */
121 #define block(shift) \ macro
127 block(31)
128 block(30)
129 block(29)
130 block(28)
131 block(27)
132 block(26
    [all...]
udivsi3.S 57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
107 /* Last block, no need to update r2 or r3. */
118 #define block(shift) \ macro
124 block(31)
125 block(30)
126 block(29)
127 block(28)
128 block(27)
129 block(26
    [all...]
umodsi3.S 55 * This depends on the fixed instruction size of block.
58 * block(shift) implements the test-and-update-quotient core.
103 /* Last block, no need to update r2 or r3. */
112 #define block(shift) \ macro
117 block(31)
118 block(30)
119 block(29)
120 block(28)
121 block(27)
122 block(26
    [all...]
  /src/sys/dev/hdaudio/
hdafg_dd.c 50 struct eld_baseline_block *block = &hdi->eld; local in function:hdafg_dd_parse_info
59 if (datalen < sizeof(block->header)) {
66 memcpy(&block->header, data, sizeof(block->header));
67 data += sizeof(block->header);
68 datalen -= sizeof(block->header);
70 if (datalen < block->header.baseline_eld_len * 4 ||
71 datalen < sizeof(*block) - sizeof(block->header)) {
78 datalen = block->header.baseline_eld_len * 4
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa2012/ref/
stream_salsa2012_ref.c 18 unsigned char block[64]; local in function:crypto_stream_salsa2012
47 crypto_core_salsa2012(block, in, kcopy, NULL);
49 c[i] = block[i];
52 sodium_memzero(block, sizeof block);
64 unsigned char block[64]; local in function:crypto_stream_salsa2012_xor
82 crypto_core_salsa2012(block, in, kcopy, NULL);
84 c[i] = m[i] ^ block[i];
97 crypto_core_salsa2012(block, in, kcopy, NULL);
99 c[i] = m[i] ^ block[i]
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa208/ref/
stream_salsa208_ref.c 18 unsigned char block[64]; local in function:crypto_stream_salsa208
47 crypto_core_salsa208(block, in, kcopy, NULL);
49 c[i] = block[i];
52 sodium_memzero(block, sizeof block);
64 unsigned char block[64]; local in function:crypto_stream_salsa208_xor
82 crypto_core_salsa208(block, in, kcopy, NULL);
84 c[i] = m[i] ^ block[i];
97 crypto_core_salsa208(block, in, kcopy, NULL);
99 c[i] = m[i] ^ block[i]
    [all...]
  /src/sbin/fsck_msdos/
boot.c 48 u_char *block; local in function:readboot
63 block = calloc(1, secsize);
64 if (block == NULL)
67 if ((size_t)read(dosfs, block, secsize) != secsize) {
68 perr("could not read boot block");
69 free(block);
73 if (block[510] != 0x55 || block[511] != 0xaa) {
74 pfatal("Invalid signature in boot block: %02x%02x", block[511], block[510])
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/ref/
salsa20_ref.c 23 unsigned char block[64]; local in function:stream_ref
52 crypto_core_salsa20(block, in, kcopy, NULL);
54 c[i] = block[i];
57 sodium_memzero(block, sizeof block);
69 unsigned char block[64]; local in function:stream_ref_xor_ic
88 crypto_core_salsa20(block, in, kcopy, NULL);
90 c[i] = m[i] ^ block[i];
103 crypto_core_salsa20(block, in, kcopy, NULL);
105 c[i] = m[i] ^ block[i]
    [all...]
  /src/bin/dd/
conv.c 103 void block(void) { errx(EXIT_FAILURE, "%s", no_block + 2); } function in typeref:typename:void
117 block(void) function in typeref:typename:void
126 * Record truncation can cross block boundaries. If currently in a
161 * input block.
179 * block, it's a truncation.
  /src/sys/arch/vax/boot/boot/
rom.c 87 int block; local in function:romstrategy
90 block = dblk + lp->d_partitions[dpart].p_offset;
94 block += RF_PROTECTED_SECTORS;
97 romwrite_uvax(block, size, buf, &bootrpb);
99 romread_uvax(block, size, buf, &bootrpb);
  /src/sys/dev/vme/
xio.h 52 u_int block; /* in: block number */ member in struct:xd_iocmd
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
tsan_sync_test.cc 22 u64 block[1] = {}; // fake malloc block local in function:__tsan::TEST
23 m->AllocBlock(thr, 0, (uptr)&block[0], 1 * sizeof(u64));
24 MBlock *mb = m->GetBlock((uptr)&block[0]);
28 uptr sz = m->FreeBlock(thr->proc(), (uptr)&block[0]);
30 mb = m->GetBlock((uptr)&block[0]);
37 u64 block[4] = {}; // fake malloc block local in function:__tsan::TEST
38 m->AllocBlock(thr, 0, (uptr)&block[0], 1 * sizeof(u64));
39 m->AllocBlock(thr, 0, (uptr)&block[1], 3 * sizeof(u64))
54 u64 block[4] = {}; \/\/ fake malloc block local in function:__tsan::TEST
114 u64 block[1] = {}; \/\/ fake malloc block local in function:__tsan::TEST
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/dcn20/
amdgpu_hw_translate_dcn20.c 51 #define block HPD macro
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/gpio/dcn21/
amdgpu_hw_translate_dcn21.c 51 #define block HPD macro
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
notify.h 15 int block; member in struct:nvkm_notify
  /src/tests/lib/libc/sys/
t_sigtimedwait.c 51 sigset_t block; local in function:ATF_TC_BODY
56 sigemptyset(&block);
60 r = sigtimedwait(&block, &info, &ts);
106 sigset_t block; local in function:ATF_TC_BODY
111 sigemptyset(&block);
114 r = sigtimedwait(&block, &info, &ts);
  /src/sys/arch/sun3/dev/
xio.h 51 u_long block; /* in: block number */ member in struct:xd_iocmd
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
ttm_lock.c 95 bool block = true; local in function:__ttm_read_trylock
102 block = false;
105 block = false;
109 return !block;
  /src/usr.bin/cksum/
md5.c 51 * Length of test block, number of test blocks.
77 unsigned char block[TEST_BLOCK_LEN]; local in function:MD5TimeTrial
85 /* Initialize block */
87 block[i] = (unsigned char) (i & 0xff);
95 MD5Update(&context, block, TEST_BLOCK_LEN);
  /src/usr.bin/vndcompress/
utils.c 177 sigset_t block; local in function:block_signals
179 (void)sigfillset(&block);
180 (void)sigprocmask(SIG_BLOCK, &block, old_sigmask);
  /src/usr.sbin/installboot/arch/
amiga.c 86 u_int32_t block[128*16]; local in function:amiga_setboot
98 rv = pread(params->s1fd, &block, sizeof(block), 0);
102 } else if (rv != sizeof(block)) {
109 sum2 = chksum(block, 1024/4);
110 sum16 = chksum(block, 8192/4);
126 dline = (char *)&(block[CMDLN_LOC/4]);
133 block[1] = htobe32(0);
134 block[1] = htobe32(0xffffffff - chksum(block, sumlen))
    [all...]
  /src/sys/arch/macppc/stand/installboot/
installboot.c 68 uint64_t block; local in function:main
190 block = blocks[blk_i].block * (params->fstype->blocksize / 512);
191 bbinfop->bbi_block_table[blk_i] = htobe32(block);
  /src/tests/usr.bin/indent/
lsym_comment.c 6 * C11 distinguishes block comments and end-of-line comments. Indent further
7 * distinguishes box comments that are a special kind of block comments.
24 * - block comment starting with '/' '*' '-'
25 * - block comment starting with '/' '*' '*'
26 * - block comment starting with '/' '*' '\n'
29 * - block comment starting with '/' '*' 'x', so without leading space
31 * - block/end-of-line comment to the right of a label
32 * - block/end-of-line comment to the right of code
33 * - block/end-of-line comment to the right of label with code
137 * The other Christmas tree is a standalone block comment, therefore th
1122 int block; \/* comment line 1 variable in typeref:typename:int
1131 int block; \/* comment line 1 comment line 2 *\/ variable in typeref:typename:int
    [all...]
  /src/sbin/gpt/
add.c 84 add(gpt_t gpt, off_t alignment, off_t block, off_t sectors, off_t size __unused,
133 map = map_alloc(gpt, block, sectors, alignsecs);
140 map = map_alloc(gpt, block, sectors, 0);
166 off_t alignment = 0, block = 0, sectors = 0, size = 0; local in function:cmd_add
176 if (gpt_human_get(gpt, &block) == -1)
212 return add(gpt, alignment, block, sectors, size, entry, name, type);
  /src/sys/arch/arm/arm32/
stubs.c 223 int block; local in function:dodumpsys
263 for (block = 0; block < bootconfig.dramblocks && error == 0; ++block) {
264 addr = bootconfig.dram[block].address;
265 for (;addr < (bootconfig.dram[block].address
266 + (bootconfig.dram[block].pages * PAGE_SIZE));

Completed in 27 milliseconds

1 2 3 4 5 6