Searched refs:div (Results 1 - 25 of 103) sorted by relevance

12345

/freebsd-11-stable/lib/libc/i386/stdlib/
H A DMakefile.inc4 MDSRCS+=div.S ldiv.S
H A Ddiv.S31 ENTRY(div)
37 END(div)
/freebsd-11-stable/lib/libc/amd64/stdlib/
H A DMakefile.inc4 MDSRCS+=div.S ldiv.S lldiv.S
H A Ddiv.S1 /* $NetBSD: div.S,v 1.1 2001/06/19 00:25:04 fvdl Exp $ */
11 ENTRY(div)
18 END(div)
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/x86/
H A Ddiv.pl12 &div("ebx");
/freebsd-11-stable/contrib/libxo/xohtml/
H A Dxohtml.js17 output += "<div class='xpath-wrapper'>"
19 + "show xpath</a><div class='xpath'>"
20 + xpath + "</div></div><br/>";
23 output = "<div>" + output + "</div>";
30 var div = $(output);
31 div.find(".xpath-link")
43 return div;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/offsetof/
H A Dtst.OffsetofArith.d53 div = offsetof(record_t, y) / offsetof(record_t, x);
62 printf("Division of offsets (y/x) = %d\n", div);
70 || (2 != div)/
/freebsd-11-stable/sys/mips/atheros/
H A Dar724x_chip.c72 uint32_t div; local
78 div = ((pll >> AR724X_PLL_DIV_SHIFT) & AR724X_PLL_DIV_MASK);
79 freq = div * AR724X_BASE_FREQ;
81 div = ((pll >> AR724X_PLL_REF_DIV_SHIFT) & AR724X_PLL_REF_DIV_MASK);
82 freq *= div;
86 div = ((pll >> AR724X_DDR_DIV_SHIFT) & AR724X_DDR_DIV_MASK) + 1;
87 u_ar71xx_ddr_freq = freq / div;
89 div = (((pll >> AR724X_AHB_DIV_SHIFT) & AR724X_AHB_DIV_MASK) + 1) * 2;
90 u_ar71xx_ahb_freq = u_ar71xx_cpu_freq / div;
91 u_ar71xx_wdt_freq = u_ar71xx_cpu_freq / div;
[all...]
H A Dar91xx_chip.c70 uint32_t div; local
76 div = ((pll >> AR91XX_PLL_DIV_SHIFT) & AR91XX_PLL_DIV_MASK);
77 freq = div * AR91XX_BASE_FREQ;
80 div = ((pll >> AR91XX_DDR_DIV_SHIFT) & AR91XX_DDR_DIV_MASK) + 1;
81 u_ar71xx_ddr_freq = freq / div;
83 div = (((pll >> AR91XX_AHB_DIV_SHIFT) & AR91XX_AHB_DIV_MASK) + 1) * 2;
84 u_ar71xx_ahb_freq = u_ar71xx_cpu_freq / div;
85 u_ar71xx_uart_freq = u_ar71xx_cpu_freq / div;
86 u_ar71xx_wdt_freq = u_ar71xx_cpu_freq / div;
H A Dar71xx_chip.c94 uint32_t div; local
100 div = ((pll >> AR71XX_PLL_DIV_SHIFT) & AR71XX_PLL_DIV_MASK) + 1;
101 freq = div * AR71XX_BASE_FREQ;
103 div = ((pll >> AR71XX_CPU_DIV_SHIFT) & AR71XX_CPU_DIV_MASK) + 1;
104 u_ar71xx_cpu_freq = freq / div;
106 div = ((pll >> AR71XX_DDR_DIV_SHIFT) & AR71XX_DDR_DIV_MASK) + 1;
107 u_ar71xx_ddr_freq = freq / div;
109 div = (((pll >> AR71XX_AHB_DIV_SHIFT) & AR71XX_AHB_DIV_MASK) + 1) * 2;
110 u_ar71xx_ahb_freq = u_ar71xx_cpu_freq / div;
111 u_ar71xx_wdt_freq = u_ar71xx_cpu_freq / div;
[all...]
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dstdlib.h49 using std::tr1::div;
/freebsd-11-stable/sys/mips/mediatek/
H A Dmtk_soc.c166 uint32_t val, mul, div, res; local
178 div = (val >> MT7620_PLL_DIV_RATIO_OFF) & MT7620_PLL_DIV_RATIO_MSK;
180 if (div != MT7620_PLL_DIV_RATIO_MSK)
181 div += MT7620_PLL_DIV_RATIO_BASE;
183 div = MT7620_PLL_DIV_RATIO_MAX;
185 res = (MT7620_XTAL_40 * mul) / div;
193 uint32_t val, div, res; local
197 div = bus_space_read_4(bst, bsh, MTK_MT7621_CLKDIV_REG);
198 div >>= MT7621_MEMDIV_OFF;
199 div
[all...]
/freebsd-11-stable/sys/dev/extres/clk/
H A Dclk_fixed.h46 uint32_t div; member in struct:clk_fixed_def
H A Dclk_fixed.c59 uint32_t div; member in struct:clknode_fixed_sc
90 if ((sc->mult != 0) && (sc->div != 0))
91 *freq = (*freq / sc->div) * sc->mult;
104 if (sc->mult == 0 || sc->div == 0) {
113 *fout = (*fout / sc->mult) * sc->div;
131 sc->div = clkdef->div;
194 rv = OF_getencprop(node, "clock-div", &def->div, sizeof(def->div));
[all...]
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A DMakefile.sub7 div.$(OBJEXT) \
17 $(srcdir)/div.cpp \
28 $(srcdir)/div.h \
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dclock.c94 int32_t div; /* Periodic divisor. */ member in struct:decr_state
137 val += s->div;
236 s->div = (decr_et.et_frequency * period) >> 32;
239 s->div = 0;
244 fdiv = s->div;
250 mtspr(SPR_DECAR, s->div);
275 s->div = 0x7fffffff;
281 mtdec(s->div);
/freebsd-11-stable/lib/libc/stdlib/
H A Ddiv.c34 static char sccsid[] = "@(#)div.c 8.1 (Berkeley) 6/4/93";
42 div(num, denom) function
/freebsd-11-stable/sys/dev/fdt/
H A Dfdt_powerpc.c49 fdt_fixup_busfreq(phandle_t root, uint32_t div) argument
75 if (div == 0)
78 freq /= div;
/freebsd-11-stable/sys/arm/allwinner/clk/
H A Daw_apbclk.c125 uint32_t val, div, m, n; local
135 div = 1 << ((val & A10_APB0_CLK_RATIO) >>
137 if (div == 1)
138 div = 2;
139 *freq = *freq / div;
149 div = 1 << ((val & A23_APB0_CLK_RATIO) >>
151 *freq = *freq / div;
154 div = ((val & A83T_APB1_CLK_RATIO) >>
156 *freq = *freq / div;
/freebsd-11-stable/gnu/usr.bin/groff/src/roff/troff/
H A DMakefile4 SRCS= dictionary.cpp div.cpp env.cpp input.cpp \
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cstdlib.h83 #undef div
117 using ::div;
146 div(long __i, long __j) { return ldiv(__i, __j); }
180 div(long long __n, long long __d)
212 using ::__gnu_cxx::div;
/freebsd-11-stable/share/examples/printing/
H A Dmake-ps-header56 $page_width ($user) stringwidth pop sub 2 div $page_height 200 sub moveto
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dtick.c355 u_long base, div, fdiv; local
359 div = (tick_et.et_frequency * period) >> 32;
361 div = 0;
365 fdiv = div;
366 PCPU_SET(tickincrement, div);
375 if (div != 0) {
377 base = roundup(base, div);
/freebsd-11-stable/usr.bin/sdiff/
H A Dsdiff.c49 char div; member in struct:diffline
620 println(const char *s1, const char div, const char *s2) argument
637 if (div == ' ' && !s2) {
647 printf(" %c\n", div);
650 printf(" %c ", div);
872 enqueue(char *left, char div, char *right) argument
879 diffp->div = div;
976 divc = STAILQ_FIRST(&diffhead)->div;
989 if (!sflag || diffp->div
[all...]
/freebsd-11-stable/sys/mips/nlm/
H A Dtick.c227 uint32_t fdiv, div, next; local
230 div = (et->et_frequency * period) >> 32;
232 div = 0;
236 fdiv = div;
237 DPCPU_SET(cycles_per_tick, div);

Completed in 264 milliseconds

12345