/src/sys/netinet/ |
cpu_in_cksum.c | 71 * of the inner loop. After each iteration of the inner loop, a partial 81 uint32_t sum, partial; local in function:cpu_in_cksum 124 partial = 0; 129 partial = *data << 8; 131 partial = *data; 139 partial += *(uint16_t *)data; 140 partial += *(uint16_t *)(data + 2); 141 partial += *(uint16_t *)(data + 4); 142 partial += *(uint16_t *)(data + 6); 143 partial += *(uint16_t *)(data + 8) 225 uint64_t sum, partial; local in function:cpu_in_cksum [all...] |
in4_cksum.c | 96 uint32_t partial; local in function:in4_cksum 99 partial = w[0] & 0xff00; 101 partial = w[0] & 0x00ff; 103 partial += w[1]; 104 partial += w[2]; 105 partial += w[3]; 107 partial += w[4] & 0x00ff; 109 partial += w[4] & 0xff00; 111 sum += partial << 8;
|
/src/sys/arch/m68k/m68k/ |
cpu_in_cksum.c | 51 uint32_t sum, partial; local in function:cpu_in_cksum 94 partial = 0; 99 partial = *data; 109 partial = oc_cksum(data, mlen, partial); 112 partial = (partial << 8) + (partial >> 24); 113 sum += (partial >> 16) + (partial & 0xffff) [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/ |
ppevvmath.h | 40 * A.partial.real => Only the integer portion 41 * A.partial.decimal => Only the fractional portion 48 } partial; member in union:_fInt 340 X_LessThanOne = (X.partial.real == 0 && X.partial.decimal != 0 && X.full >= 0); 341 Y_LessThanOne = (Y.partial.real == 0 && Y.partial.decimal != 0 && Y.full >= 0); 415 if (num.partial.real > 3000) 417 else if (num.partial.real > 1000) 419 else if (num.partial.real > 100 [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_ggtt.c | 1604 KASSERTMSG(view->partial.offset <= obj->base.size >> PAGE_SHIFT, 1608 (size_t)view->partial.offset, 1609 (size_t)view->partial.size); 1610 KASSERTMSG((view->partial.size <= 1611 (obj->base.size >> PAGE_SHIFT) - view->partial.offset), 1615 (size_t)view->partial.offset, 1616 (size_t)view->partial.size); 1617 KASSERTMSG(view->partial.size <= INT_MAX, "view size=0x%zx", 1618 (size_t)view->partial.size); 1623 ret = sg_alloc_table(st, view->partial.size, GFP_KERNEL) [all...] |
intel_reset.c | 711 vma_offset = vma->ggtt_view.partial.offset << PAGE_SHIFT;
|
/src/usr.sbin/fstyp/ |
hammer.c | 164 __fsvtyp_hammer(const char *blkdevs, char *label, size_t size, int partial) 194 /* If no rootvolpath, proceed only if partial mode with volpath. */ 197 else if (!partial || !volpath) 207 if (partial)
|
hammer2.c | 414 __fsvtyp_hammer2(const char *blkdevs, char *label, size_t size, int partial) 462 /* If no rootvolpath, proceed only if partial mode with volpath. */ 465 else if (!partial || !volpath) 479 if (partial) 504 /* If in partial mode, read label but ignore error. */ 505 if (partial)
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_vma.h | 200 offsetof(typeof(*view), partial)); 203 return memcmp(&vma->ggtt_view.partial, &view->partial, view->type);
|
i915_vma_types.h | 155 struct intel_partial_info partial; member in union:i915_ggtt_view::__anon62b2feda010a
|
i915_vma.c | 193 view->partial.offset, 194 view->partial.size, 196 vma->size = view->partial.size; 1214 vma_offset = vma->ggtt_view.partial.offset << PAGE_SHIFT;
|
/src/usr.sbin/autofs/ |
common.c | 125 char *component, *copy, *tofree, *partial, *tmp; local in function:create_directory 135 partial = checked_strdup("/"); 140 tmp = concat(partial, '/', component); 141 free(partial); 142 partial = tmp; 143 //log_debugx("creating \"%s\"", partial); 144 error = mkdir(partial, 0755); 146 log_warn("cannot create %s", partial);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/ |
i915_gem_mman.c | 124 pr_err("Failed to pin partial view: offset=%lu; err=%d\n", 129 n = page - view.partial.offset; 130 GEM_BUG_ON(n >= view.partial.size); 135 pr_err("Failed to iomap partial view: offset=%lu; err=%d\n", 154 pr_err("Partial view for %lu [%u] (offset=%llu, size=%u [%llu, row size %u], fence=%d, tiling=%d, stride=%d) misalignment, expected write to page (%llu + %u [0x%llx]) of 0x%x, found 0x%x\n", 156 view.partial.offset, 157 view.partial.size, 213 GEM_BUG_ON(view.partial.size > nreal); 218 pr_err("Failed to pin partial view: offset=%lu; err=%d\n", 223 n = page - view.partial.offset [all...] |
/src/common/lib/libc/arch/powerpc/string/ |
memcmp.S | 162 /*bne+ partial*/ /*DWG*/ /* If less than 8 bytes, handle */ 165 /*blt partial*/ /* Removed. DWG */ 221 partial:
|
/src/common/lib/libc/arch/sparc/gen/ |
mul.S | 61 andcc %g0, %g0, %o4 ! zero the partial product and clear N and V
|
umul.S | 68 andcc %g0, %g0, %o4 ! zero the partial product and clear N and V 131 * For signed multiplies, we subtract (x << 32) from the partial 133 * Because of the way the shift into the partial product is calculated
|
/src/usr.bin/make/unit-tests/ |
varparse-undef-partial.mk | 1 # $NetBSD: varparse-undef-partial.mk,v 1.5 2024/01/07 11:39:04 rillig Exp $
|
cond-short.mk | 191 # This partial evaluation led to the wrong error message about 'VAR' being
|
varmod-match.mk | 71 # Ensure that the partial match '.c' doesn't confuse the fast code path.
|
Makefile | 471 TESTS+= varparse-undef-partial
|
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_mman.c | 233 view.partial.offset = rounddown(page_offset, chunk); 234 view.partial.size = 236 (obj->base.size >> PAGE_SHIFT) - view.partial.offset); 238 /* If the partial covers the entire object, just create a normal VMA. */ 465 /* Use a partial view if it is bigger than available space */ 527 area->vm_start + (vma->ggtt_view.partial.offset << PAGE_SHIFT),
|
/src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
i915_vma.c | 638 pr_err("Partial scattergather list too long\n"); 644 pr_err("DMA mismatch for partial page offset %lu\n", 737 view.partial.offset = offset; 738 view.partial.size = sz; 754 pr_err("(%s) Inconsistent partial pinning for (offset=%d, size=%d)\n", 761 pr_err("(%s) Inconsistent partial pages for (offset=%d, size=%d)\n", 778 pr_err("(%s) All partial vma were not recorded on the obj->vma_list: found %u, expected %u\n",
|
/src/common/lib/libc/hash/sha3/ |
sha3.c | 124 /* If there's a partial word, try to fill it. */ 145 /* At a word boundary. Fill any partial buffer. */ 161 goto partial; 182 partial: 219 /* For SHA3-224, we need to expose a partial word. */
|
/src/sys/arch/hppa/spmath/ |
impys.S | 51 * from right to left, to generate partial product. Execution speed is more 113 b sh4n+4 ; just shift partial
|
impyu.S | 51 * to generate partial product. Execution speed is more important than program 130 b sh4n+4 ; just shift partial
|