HomeSort by: relevance | last modified time | path
    Searched refs:guess (Results 1 - 25 of 158) sorted by relevancy

1 2 3 4 5 6 7

  /src/tests/usr.bin/xlint/lint1/
gcc_init_compound_literal.c 42 /* expect+1: warning: static variable 'guess' unused [226] */
43 static const struct node guess = { variable in typeref:struct:node
  /src/external/bsd/ntp/dist/scripts/monitoring/
timelocal.pl 63 $guess = $^T;
64 @g = gmtime($guess);
67 $guess += $diff * (364 * $DAYS);
68 @g = gmtime($guess);
71 $guess += $diff * (28 * $DAYS);
72 @g = gmtime($guess);
75 $guess -= $g[0] * $SEC + $g[1] * $MIN + $g[2] * $HR + $g[3] * $DAYS;
76 $cheat{$ym} = $guess;
  /src/external/cddl/dtracetoolkit/dist/Bin/
guess.d 3 * guess.d - guessing game in D (DTrace)
5 * $Id: guess.d,v 1.1.1.1 2015/09/30 22:01:07 christos Exp $
7 * USAGE: guess.d
21 printf("guess.d - Guess a number between 1 and 100\n\n");
34 printf("Enter guess %d: ", num);
35 system("read guess");
60 guess = fac * (keys[pos] - '0');
63 guess = pos >= 0 ? guess + fac * (keys[pos] - '0') : guess
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Misc/
guess.d 3 * guess.d - guessing game in D (DTrace)
5 * $Id: guess.d,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
7 * USAGE: guess.d
21 printf("guess.d - Guess a number between 1 and 100\n\n");
34 printf("Enter guess %d: ", num);
35 system("read guess");
60 guess = fac * (keys[pos] - '0');
63 guess = pos >= 0 ? guess + fac * (keys[pos] - '0') : guess
    [all...]
  /src/external/gpl3/autoconf/dist/man/
common.x 8 .BR config.guess (1),
config.guess.x 4 config.guess \- guess the build system triplet
7 config.guess might need to compile and run C code, hence it needs a
24 This script will guess the type of the `build' machine.
  /src/external/gpl2/groff/bin/addftinfo/
Makefile 10 SRCS= addftinfo.cpp guess.cpp
  /src/external/gpl2/groff/dist/src/utils/addftinfo/
guess.h 1 /* $NetBSD: guess.h,v 1.1.1.1 2016/01/13 18:41:49 christos Exp $ */
46 void guess(const char *s, const font_params &param, char_metric *metric);
  /src/sys/lib/libkern/arch/m68k/
udivsi3.S 83 addl %d1, %d0 | %d0 = quotient guess
85 | the quotient we have so far is only a guess. the divide we
92 | so our guess quotient cannot be less than our real desired
109 muluw %d2, %d1 | high(divisor) * low(guess)
110 moveal %d1, %a1 | save high(divisor) * low(guess)
114 muluw %d2, %d1 | low(divisor) * high(guess)
119 muluw %d0, %d2 | low(guess) * low(divisor)
120 addl %d1, %d2 | %d2 = guess * divisor
  /src/external/bsd/am-utils/dist/m4/
GNUmakefile 106 config.guess \
117 config.guess:: $(P1s)*/config.guess
119 config.guess:: $(P2s)/config.guess
121 config.guess:: $(P3)/config.guess
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-qt/
autoclean.sh 28 rm -f config.guess
  /src/external/mit/lua/dist/
Makefile 7 PLAT= guess
39 PLATS= guess aix bsd c89 freebsd generic ios linux linux-readline macosx mingw posix solaris
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-wxwidgets/
autoclean.sh 32 rm -f config.guess
  /src/external/gpl3/gcc/lib/liblto_plugin/
Makefile 53 --build=`${HOST_SH} ${GNUHOSTDIST}/config.guess` \
54 --host=`${HOST_SH} ${GNUHOSTDIST}/config.guess` \
  /src/external/gpl3/gcc.old/lib/liblto_plugin/
Makefile 53 --build=`${HOST_SH} ${GNUHOSTDIST}/config.guess` \
54 --host=`${HOST_SH} ${GNUHOSTDIST}/config.guess` \
  /src/sys/arch/shark/isa/
clock.c 481 unsigned int guess = FIRST_GUESS; local
489 delayloop(guess);
499 guess *= uimax(2, (TIMER_MUSECDIV(1024) / ticks));
502 count1024usec = (guess * (TIMER_MUSECDIV(1024))) / ticks;
  /src/external/bsd/am-utils/dist/
config.guess.long 2 # generate long version of output from config.guess
27 GCONFIG=`config.guess || echo unknown-config`
buildall 13 test -f ../config.guess && cd ..
14 test -f ../../config.guess && cd ../..
16 host_alias=$(cd /tmp; $pwd/config.guess.long)
19 echo "$0: cannot find $pwd/config.guess"
  /src/external/gpl3/gcc.old/dist/libgcc/config/tilepro/
atomic.c 230 #define __subword_cmpxchg_body(type, size, ptr, guess, val) \
238 if (__builtin_expect((oldval == guess), 1)) { \
254 type guess = *guess_ptr; \
255 type oldval = __subword_cmpxchg_body(type, size, ptr, guess, val); \
257 bool success = (oldval == guess); \
268 __sync_val_compare_and_swap_##size(type* ptr, type guess, type val) \
271 type oldval = __subword_cmpxchg_body(type, size, ptr, guess, val); \
277 __sync_bool_compare_and_swap_##size(type* ptr, type guess, type val) \
279 type oldval = __sync_val_compare_and_swap_##size(ptr, guess, val); \
280 return oldval == guess; \
    [all...]
  /src/external/gpl3/gcc/dist/contrib/regression/
objs-gcc.sh 85 # This script used to use config.guess, but that is not how releng
87 H_BUILD=`$SOURCE/config.guess || exit 1`
  /src/external/gpl3/gcc.old/dist/contrib/regression/
objs-gcc.sh 86 # This script used to use config.guess, but that is not how releng
88 H_BUILD=`$SOURCE/config.guess || exit 1`
  /src/external/bsd/bc/dist/
number.c 1008 /* Calculate the quotient digit guess. */
1291 bc_num guess, guess1, point5, diff; local
1316 bc_init_num(&guess);
1323 /* Calculate the initial guess. */
1326 /* The number is between 0 and 1. Guess should start at 1. */
1327 guess = bc_copy_num (_one_);
1332 /* The number is greater than 1. Guess should start at 10^(exp/2). */
1333 bc_int2num (&guess,10);
1338 bc_raise (guess, guess1, &guess, 0)
    [all...]
  /src/external/gpl2/gettext/dist/autoconf-lib-link/
Makefile.am 48 all-local: build-aux/config.guess build-aux/config.sub build-aux/install-sh build-aux/ltmain.sh build-aux/missing build-aux/config.rpath
54 build-aux/config.guess: $(srcdir)/../build-aux/config.guess build-aux-dir
55 cp $(srcdir)/../build-aux/config.guess build-aux/config.guess
72 DISTCLEANFILES += build-aux/config.guess build-aux/config.sub build-aux/install-sh build-aux/ltmain.sh build-aux/missing build-aux/config.rpath
  /src/usr.sbin/sysinst/
msg.mbr.en 67 {Using the information already on the disk, my best guess for the BIOS
  /src/external/bsd/ntp/dist/
build 33 if [ ! -r sntp/libevent/build-aux/config.guess ] ; then
37 # sntp/scripts/cvo.sh invokes config.guess, and we want it to use the copy
38 # in the build-aux directory if there's not another config.guess earlier

Completed in 37 milliseconds

1 2 3 4 5 6 7