| /src/external/lgpl3/mpfr/dist/src/ |
| log.c | 126 mpfr_exp_t cancel; local 153 mpfr_sub (tmp1, tmp2, tmp1, MPFR_RNDN); /* log(a), err<=7ulps+cancel */ 157 cancel = MPFR_GET_EXP (tmp2) - MPFR_GET_EXP (tmp1); 158 MPFR_LOG_MSG (("canceled bits=%ld\n", (long) cancel)); 160 if (MPFR_UNLIKELY (cancel < 0)) 161 cancel = 0; 166 if (MPFR_LIKELY (MPFR_CAN_ROUND (tmp1, p - cancel - 4, q, rnd_mode))) 171 if cancel = 0 (can this occur?). */ 172 p += cancel + MPFR_INT_CEIL_LOG2 (p);
|
| const_pi.c | 51 mpfr_prec_t px, p, cancel, k, kmax; local 93 cancel = MPFR_NOTZERO (S) ? (mpfr_uexp_t) -mpfr_get_exp(S) : p; 94 /* MPFR_ASSERTN (cancel >= px || cancel >= 9 * (1 << k) - 4); */ 97 /* stop when |A_k - B_k| <= 2^(k-p) i.e. cancel >= p-k */ 98 if (cancel >= p - k)
|
| cos.c | 138 mpfr_exp_t exps, cancel = 0, expx; local 274 if (exps < cancel) 276 m += cancel - exps; 277 cancel = exps;
|
| sub1.c | 36 mpfr_prec_t cancel, cancel1; local 55 sign = mpfr_cmp2 (b, c, &cancel); 68 /* sign != 0, so that cancel has a valid value. */ 69 MPFR_LOG_MSG (("sign=%d cancel=%Pd\n", sign, cancel)); 70 MPFR_ASSERTD (cancel >= 0 && cancel <= MPFR_PREC_MAX); 225 (-cancel) % GMP_NUMB_BITS to the right */ 227 MPFR_UNSIGNED_MINUS_MODULO (shift_b, cancel); 228 cancel1 = (cancel + shift_b) / GMP_NUMB_BITS [all...] |
| sum.c | 55 For instance, consider many inputs that cancel one another (two by two). 387 mpfr_prec_t cancel; /* number of cancelled bits */ local 392 cancel = 0; 400 cancel += GMP_NUMB_BITS; 408 cancel += cnt; 417 MPFR_LOG_MSG (("accumulator %s 0, cancel=%Pd\n", 418 a != MPFR_LIMB_ZERO ? "<" : ">", cancel)); 420 MPFR_ASSERTD (cancel > 0); 421 e = minexp + wq - cancel; 462 return cancel; 616 mpfr_prec_t cancel; \/* number of cancelled bits *\/ local [all...] |
| /src/lib/libpthread/ |
| pthread_cond.c | 130 int error, cancel; local 176 !(cancel = atomic_load_relaxed(&self->pt_cancel) & 197 if (__predict_false(cancel | error)) { 219 if (cancel) {
|
| /src/tests/rump/rumpkern/h_client/ |
| h_forkcli.c | 70 cancel(void) function 141 { "cancel", cancel },
|
| /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/ |
| server.py | 57 # needed state, so that we can cancel both requests that are in flight 78 def cancel(self, req): member in class:CancellationHandler 79 """Call to cancel a request. 203 # used so that 'cancel' requests can be handled -- the DAP thread 216 and cmd["command"] == "cancel" 222 self.canceller.cancel(cmd["arguments"]["requestId"]) 430 @request("cancel", on_dap_thread=True, expect_stopped=False) 432 def cancel(**args): function 433 # If a 'cancel' request can actually be satisfied, it will be 437 # The cancel request may return an error if it could not cance [all...] |
| /src/external/bsd/unbound/dist/testcode/ |
| asynclook.c | 71 /** the id to pass to libunbound to cancel */ 74 int cancel; member in struct:track_id 85 /** tracking number that can be used to cancel the query */ 102 printf(" -c : cancel the requests\n"); 276 if(my_id->cancel) { 327 async_ids[i-100].cancel=1; 407 int i, r, cancel=0, blocking=0, ext=0; local 436 cancel = 1; 530 else if(cancel) { 532 fprintf(stderr, "cancel %s\n", argv[i]) [all...] |
| /src/external/cddl/osnet/dist/cmd/zinject/ |
| zinject.c | 661 char *cancel = NULL; local 733 cancel = optarg; 889 if (cancel != NULL) { 895 (void) fprintf(stderr, "cancel (-c) incompatible with " 906 if (strcmp(cancel, "all") == 0) { 909 int id = (int)strtol(cancel, &end, 10); 912 " must be an integer or 'all'\n", cancel);
|
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/ |
| server.py | 107 # needed state, so that we can cancel both requests that are in flight 169 # ignore it -- we missed our chance to cancel that 185 def cancel(self, req): member in class:CancellationHandler 186 """Call to cancel a request. 334 # used so that 'cancel' requests can be handled -- the DAP thread 347 and cmd["command"] == "cancel" 353 self.canceller.cancel(cmd["arguments"]["requestId"]) 613 @request("cancel", on_dap_thread=True, expect_stopped=False) 615 def cancel(**args): function 616 # If a 'cancel' request can actually be satisfied, it will b [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| TestRunner.py | 80 def cancel(self): member in class:TimeoutHelper 83 self._timer.cancel() 162 timeoutHelper.cancel()
|
| /src/external/mpl/bind/dist/lib/ns/include/ns/ |
| hooks.h | 225 * own cancel and destroy function, and returns it to ns_query_hookasync() 296 * ctx->cancel = ...; // set the cancel function, which cancels the 432 ns_hook_cancelasync_t cancel; member in struct:ns_hookasync
|
| /src/sys/fs/nfs/nlm/ |
| nlm_advlock.c | 859 * cancel our lock request. 861 nlm4_cancargs cancel; local 863 memset(&cancel, 0, sizeof(cancel)); 866 cancel.cookie.n_len = sizeof(xid); 867 cancel.cookie.n_bytes = (char*) &xid; 868 cancel.block = block; 869 cancel.exclusive = exclusive; 870 cancel.alock = args.alock; 878 stat = nlm_cancel_rpc(vers, &cancel, [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/ |
| connection.c | 1025 int rc = LDAP_OTHER, cancel; local 1151 cancel = op->o_cancel; 1152 if ( cancel != SLAP_CANCEL_NONE && cancel != SLAP_CANCEL_DONE ) { 1153 if ( cancel == SLAP_CANCEL_REQ ) { 1165 } while ( (cancel = op->o_cancel) != SLAP_CANCEL_NONE 1166 && cancel != SLAP_CANCEL_DONE ); 1168 } while ( (cancel = op->o_cancel) != SLAP_CANCEL_NONE 1169 && cancel != SLAP_CANCEL_DONE );
|
| /src/external/lgpl3/mpfr/dist/tests/ |
| tsum.c | 889 cancel (void) function 967 printf ("Error in cancel on i = %d, n = %d\n", i, n); 1333 cancel ();
|
| /src/lib/librumpuser/ |
| rumpuser_sp.c | 992 int cancel; local 1004 cancel = rfp->rf_cancel; 1028 if (cancel) {
|
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| ioloop.h | 209 cancel_callback_t NULLABLE cancel; member in struct:dso_transport 310 connect_callback_t NULLABLE connected, cancel_callback_t NULLABLE cancel,
|
| /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/ |
| socket.h | 240 * What I/O events to cancel in isc_socket_cancel() calls. 242 #define ISC_SOCKCANCEL_RECV 0x00000001 /*%< cancel recv */ 243 #define ISC_SOCKCANCEL_SEND 0x00000002 /*%< cancel send */ 244 #define ISC_SOCKCANCEL_ACCEPT 0x00000004 /*%< cancel accept */ 245 #define ISC_SOCKCANCEL_CONNECT 0x00000008 /*%< cancel connect */ 246 #define ISC_SOCKCANCEL_ALL 0x0000000f /*%< cancel everything */ 294 void (*cancel)(isc_socket_t *sock, isc_task_t *task, member in struct:isc_socketmethods 467 * Cancel pending I/O of the type specified by "how". 469 * Note: if "task" is NULL, then the cancel applies to all tasks using the 479 * The type ISC_SOCKCANCEL_ALL will cancel all pending I/O on thi [all...] |
| /src/sys/arch/arm/sunxi/ |
| sun8i_crypto.c | 983 * Timeout handler. Schedules work in a thread to cancel all 1814 bool cancel; local 1821 cancel = req->cu_cancel; 1831 if (!cancel)
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_engine_types.h | 421 void (*cancel)(struct intel_engine_cs *engine); member in struct:intel_engine_cs::__anon4982
|
| /src/external/bsd/ekermit/dist/ |
| kermit.h | 298 #define I_FILE 1 /* Cancel file */ 299 #define I_GROUP 2 /* Cancel group */ 337 short cancel; /* Cancellation */ member in struct:k_data
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| dmu_send.c | 117 boolean_t cancel; member in struct:send_thread_arg 572 if (sta->cancel) 898 to_arg.cancel = B_FALSE; 916 to_arg.cancel = B_TRUE;
|
| /src/external/mpl/bind/dist/lib/dns/ |
| zone.c | 5821 * Stop things being restarted after we cancel them below. 11032 * Error during a key fetch; cancel and retry in an hour. 14572 bool cancel = true; local 14588 cancel = false; 14721 cancel = false; 14762 cancel = false; 14776 if (cancel) {
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| zone.c | 5748 * Stop things being restarted after we cancel them below. 11068 * Error during a key fetch; cancel and retry in an hour. 14463 bool cancel = true; local 14481 cancel = false; 14638 cancel = false; 14650 if (cancel) {
|