Searched refs:safe (Results 1 - 25 of 34) sorted by relevance

12

/barrelfish-2018-10-04/usr/eclipseclp/Opium/demo/
H A Dnqueens.pl38 safe(Qs).
68 * safe/1
70 safe([Q|Qs]) :-
71 safe(Qs),
73 safe([]).
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dasn_pack.c89 unsigned char *safe, *p; local
95 if (!(safe = OPENSSL_malloc (safelen))) {
99 p = safe;
103 if (buf) *buf = safe;
104 return safe;
/barrelfish-2018-10-04/usr/eclipseclp/ecrc_solvers/grace/
H A Dqueens.pl56 % A queen is safe if it cannot be taken by
60 safe(X, Y, 1),
63 safe(_, [], _).
64 safe(Q1, [Q2|T], N) :-
69 safe(Q1, T, N1).
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dprime.c67 int safe=0; local
90 else if(!strcmp(*argv,"-safe"))
91 safe=1;
133 BN_generate_prime_ex(bn,bits,safe,NULL,NULL,NULL);
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/ech/
H A Dqueens_domain.pl34 queen([X|Xs]):- safe(X,Xs,1),queen(Xs).
36 safe(X,[],N).
37 safe(X,[H|T],N):- no_attack(X,H,N), M is N+1, safe(X,T,M).
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_depr.c68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, argument
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
H A Dbn_prime.c159 int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, argument
181 if (safe)
197 if (!safe)
205 /* for "safe prime" generation,
223 /* We have a safe prime test pass */
H A Dbn.h525 BIGNUM *BN_generate_prime(BIGNUM *ret,int bits,int safe,
537 int BN_generate_prime_ex(BIGNUM *ret,int bits,int safe, const BIGNUM *add,
/barrelfish-2018-10-04/usr/eclipseclp/documents/userman/
H A Dumsdeveltools.tex94 safe(Out).
105 safe([]).
106 safe([N|L]) :-
108 safe(L).
147 safe(Out).
211 fail_if: "A solution cannot be found where all queens are safe
222 found, a list is returned specifying the safe Y-coordinate
292 safe / 1
294 safe / 1 calls:
296 safe /
[all...]
H A Dumsarith.tex178 To provide safe arithmetic over the real numbers, {\eclipse}
184 which constitute a safe lower and upper bound for the real number that
200 All computations with bounded reals give safe results, taking rounding
H A Dumssocket.tex101 Therefore, the safe approach is to use the default and let the system
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dqueens.pl149 safe(X,Y,1),
152 safe(_,[],_).
153 safe(X,[F|T],Nb) :-
156 safe(X,T,Newnb).
H A Dmodes.pl372 % To achieve safe handling of aliasing, we turn '$alias'({-})
/barrelfish-2018-10-04/usr/eclipseclp/documents/tutorial/
H A Dprogramanalysis.tex86 safe(Out).
97 safe([]).
98 safe([N|L]) :-
100 safe(L).
180 safe /1 eclipse 2.8% 0.09s 99.4%
H A Dmodelling.tex341 The following code is currently not safe in ECLiPSe:
H A Dreal.tex318 same as that used for bounded reals; that is, the inferences made are safe,
H A Dhybrid.tex701 The reduced cost of a variable is a safe estimate of how much the
717 is a safe estimate of: 1) how much the optimal will be changed by {\it
/barrelfish-2018-10-04/usr/eclipseclp/documents/megalog/
H A Dmultiuser-sec.tex240 A safe version using {\em block/3} looks as follows.
243 safe(X) :- ins_tup(s1,X),
249 ?- transaction(safe(new_item)).
/barrelfish-2018-10-04/include/openssl/
H A Dbn.h525 BIGNUM *BN_generate_prime(BIGNUM *ret,int bits,int safe,
537 int BN_generate_prime_ex(BIGNUM *ret,int bits,int safe, const BIGNUM *add,
/barrelfish-2018-10-04/usr/eclipseclp/documents/libman/
H A Dextfd.tex765 safe(X, Y, 1),
768 safe(_, [], _).
769 safe(X, [Y|T], K) :-
772 safe(X, T, K1).
/barrelfish-2018-10-04/usr/eclipseclp/documents/visualisation/
H A Dannotate.tex89 so it is safe to leave the visualisation annotations in the code even
/barrelfish-2018-10-04/usr/eclipseclp/documents/embedding/
H A Dembed.tex732 It is possible to create safe terms
736 safe terms.
H A Ddbi.tex47 The interface provides safe handles to database cursors. Higher
/barrelfish-2018-10-04/doc/011-idc/
H A DIDC.tex509 Binding implementations are not thread-safe, and it is the responsibility of
605 determine when it is safe to reclaim the memory used by reference parameters.
/barrelfish-2018-10-04/usr/eclipseclp/documents/internal/kernel/
H A Druntime.tex80 All operations on bounded reals are numerically safe in the sense that

Completed in 432 milliseconds

12