HomeSort by: relevance | last modified time | path
    Searched refs:gcd (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/drm2/include/linux/
gcd.h 1 /* $NetBSD: gcd.h,v 1.1 2014/07/16 20:59:58 riastradh Exp $ */
36 gcd(unsigned long a, unsigned long b) function in typeref:typename:unsigned long
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.h 58 constexpr size_t gcd(size_t a, size_t b) { function in namespace:__xray
59 return (b == 0) ? a : gcd(b, a % b);
62 constexpr size_t lcm(size_t a, size_t b) { return a * b / gcd(a, b); }
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_afmt.c 32 #include <linux/gcd.h>
66 div = gcd(n, cts);
amdgpu_pll.c 35 #include <linux/gcd.h>
57 tmp = gcd(*nom, *den);
  /src/lib/libc/stdlib/
getopt_long.c 90 static int gcd(int, int);
112 gcd(int a, int b) function in typeref:typename:int
144 ncycle = gcd(nnonopts, nopts);
  /src/games/wump/
wump.c 120 static int gcd(int, int);
518 gcd(int a, int b) function in typeref:typename:int
525 return (gcd(b, r));
557 } while (gcd(room_num, delta + 1) != 1);
  /src/common/dist/zlib/examples/
gzappend.c 102 local unsigned gcd(unsigned a, unsigned b) function in typeref:typename:local unsigned
154 cycles = gcd(len, rot); /* number of cycles */
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_r600_hdmi.c 32 #include <linux/gcd.h>
radeon_audio.c 30 #include <linux/gcd.h>
564 div = gcd(n, cts);
radeon_display.c 34 #include <linux/gcd.h>
889 tmp = gcd(*nom, *den);
  /src/sys/arch/arm/imx/
imxuart.c 437 gcd(long m, long n) function in typeref:typename:long
441 return gcd(n, m);
445 return gcd(n, m % n);
458 while ((f > (1<<16) || b > (1<<16)) && (d = gcd(f, b)) > 1) {
  /src/sys/dev/hdaudio/
hdafg.c 3999 static u_int gcd(u_int, u_int);
4002 static u_int gcd(u_int a, u_int b) function in typeref:typename:u_int
4005 return (b == 0) ? a : gcd(b, a % b);
4010 return a * b / gcd(a, b);

Completed in 21 milliseconds