| /src/sys/external/bsd/compiler_rt/dist/test/Unit/ |
| mulosi4_test.c | 25 int ov; local 26 si_int x = __mulosi4(a, b, &ov); 27 if (ov != expected_overflow) 29 ov, expected_overflow); 33 a, b, x, ov, expected, expected_overflow);
|
| mulodi4_test.c | 21 int ov; local 22 di_int x = __mulodi4(a, b, &ov); 23 if (ov != expected_overflow) 25 ov, expected_overflow); 29 a, b, x, ov, expected, expected_overflow);
|
| muloti4_test.c | 27 int ov; local 28 ti_int x = __muloti4(a, b, &ov); 29 if (ov != expected_overflow) { 40 ov, expected_overflow);
|
| /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ |
| mulosi4_test.c | 25 int ov; local 26 si_int x = __mulosi4(a, b, &ov); 27 if (ov != expected_overflow) 29 ov, expected_overflow); 33 a, b, x, ov, expected, expected_overflow);
|
| mulodi4_test.c | 21 int ov; local 22 di_int x = __mulodi4(a, b, &ov); 23 if (ov != expected_overflow) 25 ov, expected_overflow); 29 a, b, x, ov, expected, expected_overflow);
|
| muloti4_test.c | 27 int ov; local 28 ti_int x = __muloti4(a, b, &ov); 29 if (ov != expected_overflow) { 40 ov, expected_overflow);
|
| /src/games/gomoku/ |
| bdinit.c | 192 adjust_overlap(u_char ov, int ra, int offa, int rb, int offb, int mask) 194 ov |= (offb == 5) ? mask & 0xA : mask; 196 return ov; 202 ov |= 0xA0; 204 ov |= 0xF0; 208 ov |= 0xA0; 210 ov |= 0xF0; 214 ov |= 0xC0; 216 ov |= 0xF0; 220 ov |= 0xC0 [all...] |
| /src/games/backgammon/common_source/ |
| fancy.c | 315 int ov, nc; local 320 ov = abs(cur); 323 o = (ov - 1) / 5; 332 if (ov > nv) 334 abs(ov - nv), ' ', inc); 336 fixcol(r + inc * (ov - o * 5), nc, 337 abs(ov - nv), col, inc); 345 if (ov != 5) 346 fixcol(r + inc * ov, 347 c + 1, abs(ov - 5) [all...] |
| /src/sys/arch/x86/pci/ |
| pci_machdep.c | 983 bit_to_function_pointer(const struct pci_overrides *ov, uint64_t bit) 987 return ov->ov_conf_read; 989 return ov->ov_conf_write; 991 return ov->ov_intr_map; 993 return ov->ov_intr_string; 995 return ov->ov_intr_evcnt; 997 return ov->ov_intr_establish; 999 return ov->ov_intr_disestablish; 1001 return ov->ov_make_tag; 1003 return ov->ov_decompose_tag [all...] |
| /src/sys/arch/x86/x86/ |
| bus_space.c | 936 bit_to_function_pointer(const struct bus_space_overrides *ov, uint64_t bit) 940 return ov->ov_space_map; 942 return ov->ov_space_unmap; 944 return ov->ov_space_alloc; 946 return ov->ov_space_free; 948 return ov->ov_space_reserve; 950 return ov->ov_space_release; 952 return ov->ov_space_reservation_map; 954 return ov->ov_space_reservation_unmap; 956 return ov->ov_space_reserve_subregion [all...] |
| bus_dma.c | 1662 bit_to_function_pointer(const struct bus_dma_overrides *ov, uint64_t bit) 1666 return ov->ov_dmamap_create; 1668 return ov->ov_dmamap_destroy; 1670 return ov->ov_dmamap_load; 1672 return ov->ov_dmamap_load_mbuf; 1674 return ov->ov_dmamap_load_uio; 1676 return ov->ov_dmamap_load_raw; 1678 return ov->ov_dmamap_unload; 1680 return ov->ov_dmamap_sync; 1682 return ov->ov_dmamem_alloc [all...] |
| /src/libexec/ld.elf_so/ |
| xmalloc.c | 230 union overhead *ov; local 241 ov = cp2op((void *)x); 242 ov->ov_magic = AMAGIC; 243 ov->ov_index = x - (uintptr_t)mem + sizeof(union overhead);
|
| /src/sys/dev/pci/ |
| pci_stub.c | 49 const struct pci_overrides *ov, void *ctx, pci_chipset_tag_t *pcp)
|
| /src/sys/miscfs/overlay/ |
| overlay_vfsops.c | 93 VFS_PROTOS(ov); variable
|
| /src/common/lib/libppath/ |
| ppath.c | 491 prop_object_t ov; local 497 if ((ov = ppath_lookup_helper(o, p, NULL, NULL, NULL)) == NULL) 500 if (prop_object_type(ov) != prop_object_type(v)) 694 prop_object_t ov; local 700 if ((ov = ppath_lookup_helper(o, p, NULL, NULL, NULL)) == NULL) 703 if (prop_object_type(ov) != prop_object_type(v))
|
| /src/usr.bin/xlint/lint1/ |
| tree.c | 4066 tspec_t nt, val_t *nv, val_t *ov) 4107 if (ov->u.floating > max || ov->u.floating < min) { 4109 const char *ot_name = type_name(gettyp(ov->v_tspec)); 4120 ov->u.floating = ov->u.floating > 0 ? max : min; 4124 nv->u.floating = (float)ov->u.floating; 4126 nv->u.floating = (double)ov->u.floating; 4128 nv->u.floating = ov->u.floating; 4130 nv->u.integer = (int64_t)ov->u.floating [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i810/ |
| i810_dma.c | 1133 drm_i810_overlay_t *ov = data; local 1135 ov->offset = dev_priv->overlay_offset; 1136 ov->physical = dev_priv->overlay_physical;
|
| /src/sys/dist/pf/net/ |
| pf_norm.c | 1354 u_int16_t ov, nv; local 1356 ov = *(u_int16_t *)(&th->th_ack + 1); 1361 th->th_sum = pf_cksum_fixup(th->th_sum, ov, nv, 0);
|