Searched refs:half (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-10-stable/share/doc/psd/20.ipctut/
H A Dustreamwrite.c39 #define DATA "Half a league, half a league . . ."
H A Dstreamwrite.c40 #define DATA "Half a league, half a league . . ."
/freebsd-10-stable/lib/msun/src/
H A De_cosh.c43 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
69 return half*t+half/t;
72 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
73 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x));
H A De_coshf.c22 static const float one = 1.0, half=0.5, huge = 1.0e30; variable
47 return half*t+half/t;
50 /* |x| in [9, log(maxfloat)] return half*exp(|x|) */
51 if (ix < 0x42b17217) return half*__ieee754_expf(fabsf(x));
H A Dk_sin.c51 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
69 else return x-((z*(half*y-v*r)-y)-v*S1);
H A Ds_erff.c26 half= 0.5, variable
150 r += (x-half);
151 return half - r ;
H A Ds_erf.c118 half= 0.5, variable
272 r += (x-half);
273 return half - r ;
H A De_lgammaf_r.c27 half= 0.5, variable
209 r = (x-half)*(t-one)+w;
H A De_lgamma_r.c92 half= 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable
293 r = (x-half)*(t-one)+w;
/freebsd-10-stable/lib/msun/ld80/
H A Dk_sinl.c24 half = 0.5; variable
61 else return x-((z*(half*y-v*r)-y)-v*S1);
H A Ds_erfl.c34 half= 0.5, variable
301 r += (x-half);
302 RETURNI(half - r);
H A De_lgammal_r.c34 half= 0.5, variable
352 r = (x-half)*(t-one)+w;
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_closefrom.c84 int buf[16], cur, half; local
88 * Open a buffer of descriptors, close the half of
104 half = STDERR_FILENO + __arraycount(buf) / 2;
105 ATF_REQUIRE(closefrom(half) == 0);
108 ATF_REQUIRE(cur == half - 1);
/freebsd-10-stable/lib/msun/ld128/
H A Dk_sinl.c24 half = 0.5; variable
58 else return x-((z*(half*y-v*r)-y)-v*S1);
H A Ds_erfl.c31 half= 0.5, variable
283 r += (x-half);
284 return half - r;
H A De_lgammal_r.c30 half= 0.5, variable
324 r = (x-half)*(t-one)+w;
/freebsd-10-stable/contrib/gdb/gdb/
H A Dblock.c78 int bot, top, half; local
100 half = (top - bot + 1) >> 1;
101 b = BLOCKVECTOR_BLOCK (bl, bot + half);
103 bot += half;
105 top = bot + half;
/freebsd-10-stable/contrib/nvi/vi/
H A Dvs_split.c50 size_t half; local
74 /* Split the screen in half. */
75 half = sp->rows / 2;
76 if (ccl && half > 6)
77 half = 6;
92 * half of the current screen, the new screen goes under the current
97 * in half and update the shared information.
100 !ccl && (vs_sm_cursor(sp, &smp) ? 0 : (smp - HMAP) + 1) >= half;
101 if (splitup) { /* Old is bottom half. */
102 new->rows = sp->rows - half; /* Ne
[all...]
/freebsd-10-stable/usr.bin/col/
H A Dcol.c71 #define RHLF '8' /* ESC-8 reverse half-line feed */
72 #define FHLF '9' /* ESC-9 forward half-line feed */
111 static int fine; /* if `fine' resolution (half lines) */
112 static int max_bufd_lines; /* max # of half lines to keep in memory */
163 case 'f': /* allow half forward line feeds */
393 * Print a number of newline/half newlines. If fine flag is set, nblank_lines
394 * is the number of half line feeds, otherwise it is the number of whole line
400 int half, i, nb; local
402 half = 0;
406 half
[all...]
/freebsd-10-stable/sys/dev/cxgbe/tom/
H A Dt4_tom_l2t.c71 u_int hash, half = d->l2t_size / 2, start = 0; local
89 start = half;
94 hash %= half;
/freebsd-10-stable/lib/libc/db/btree/
H A Dbt_split.c401 * instead of copying half the data to the right page and compacting
580 * l: page to put lower half of data
581 * r: page to put upper half of data
597 indx_t full, half, nxt, off, skip, top, used; local
610 half = full / 2;
663 if (used >= half) {
/freebsd-10-stable/crypto/openssl/crypto/bn/asm/
H A Dco-586.pl201 local($b,$tot,$end,$half);
/freebsd-10-stable/crypto/openssl/crypto/bn/asm/x86/
H A Dcomba.pl189 local($b,$tot,$end,$half);
/freebsd-10-stable/bin/sh/
H A Dexpand.c1322 int half; local
1327 half = len >> 1;
1329 for (n = half ; --n >= 0 ; ) {
1333 q->next = NULL; /* terminate first half of list */
1334 q = msort(list, half); /* sort first half of list */
1335 p = msort(p, len - half); /* sort second half */
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DDataExtractor.cpp1392 static float half2float (uint16_t half) argument
1398 int32_t v = (int16_t) half;
1890 uint16_t half = this->GetU16(&offset); local
1891 f = half2float(half);

Completed in 311 milliseconds

12