HomeSort by: relevance | last modified time | path
    Searched defs:d12 (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/compat/gen/
compat_readdir.c 25 direnttodirent12(struct dirent12 *d12, const struct dirent *d)
30 if (d->d_fileno > UINT_MAX || d->d_namlen >= sizeof(d12->d_name)) {
34 d12->d_fileno = (uint32_t)d->d_fileno;
35 d12->d_reclen = (uint16_t)d->d_reclen;
36 d12->d_namlen = (uint8_t)MIN(d->d_namlen, sizeof(d->d_name) - 1);
37 d12->d_type = (uint8_t)d->d_type;
38 memcpy(d12->d_name, d->d_name, (size_t)d12->d_namlen);
39 d12->d_name[d12->d_namlen] = '\0'
46 static struct dirent12 d12; local in function:readdir
    [all...]
  /src/sys/arch/arm/arm32/
db_machdep.c 346 const uint64_t d12 = ((uint64_t)d2 << 32) | d1; local in function:tlb_print_cortex_a7_entry
348 const paddr_t pfn = __SHIFTOUT(d12, ARM_A7_TLBDATA12_PA);

Completed in 42 milliseconds