HomeSort by: relevance | last modified time | path
    Searched defs:gcd (Results 1 - 7 of 7) 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/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/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/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 16 milliseconds