Searched refs:t0 (Results 1 - 25 of 47) sorted by relevance

12

/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/
H A DMakefile26 TIMEOUT_RET = $(shell cat $(top_builddir)/t0.val)
43 TIMEOUT = $(top_builddir)/t0 $(TIMEOUT_VAL)
70 @rm -f $(top_builddir)/t0{,.val}
99 %.run-test: %.test $(top_builddir)/t0 $(top_builddir)/t0.val
140 $(top_builddir)/t0: $(top_builddir)/t0.c
144 $(top_builddir)/t0.val: $(top_builddir)/t0
145 echo `$(top_builddir)/t0
[all...]
H A Dexecute.sh169 # if gcc available then remove the below line comment else put the t0 in posixtestsuite directory.
170 #gcc -o t0 t0.c
171 ./t0 0 > /dev/null 2>&1
236 ./t0 $TIMEOUT_VAL $FILE > /dev/null 2>&1
/haiku-fatelf/src/bin/network/atftpd/
H A Dtftp_def.c61 * 1 if t1 > t0
62 * 0 if t1 = t0
63 * -1 if t1 < t0
65 int timeval_diff(struct timeval *res, struct timeval *t1, struct timeval *t0) argument
67 res->tv_sec = t1->tv_sec - t0->tv_sec;
68 res->tv_usec = t1->tv_usec - t0->tv_usec;
H A Dtftp_def.h50 int timeval_diff(struct timeval *res, struct timeval *t1, struct timeval *t0);
/haiku-fatelf/src/libs/compat/freebsd_wlan/crypto/rijndael/
H A Drijndael-alg-fst.c864 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
879 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
884 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8];
885 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9];
886 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10];
887 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11];
889 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
894 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[16];
895 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17];
896 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >>
1045 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/functional/threads/pi_test/
H A Dpitest-4.c178 double t0, t1; local
191 t0 = seconds_read();
196 t1 - base_time, t1 - t0);
200 "slept %f", rc, strerror(rc), t1 - t0);
213 double t0, t1; local
225 t0 = seconds_read();
230 t1 - base_time, t1 - t0);
234 "slept %f", rc, strerror(rc), t1 - t0);
H A Dpitest-2.c196 double t0, t1; local
209 t0 = seconds_read();
213 t1 - base_time, t1 - t0);
217 "slept %f", rc, strerror(rc), t1 - t0);
227 double t0, t1; local
240 t0 = seconds_read();
244 t1 - base_time, t1 - t0);
247 "slept %f", rc, strerror(rc), t1 - t0);
H A Dpitest-3.c210 double t0, t1; local
222 t0 = seconds_read();
227 t1 - base_time, t1 - t0);
230 "slept %f", rc, strerror(rc), t1 - t0);
240 double t0, t1; local
251 t0 = seconds_read();
256 t1 - base_time, t1 - t0);
260 "slept %f", rc, strerror(rc), t1 - t0);
H A Dpitest-6.c196 double t0, t1; local
209 t0 = seconds_read();
213 seconds_read() - base_time, t1 - t0);
217 "slept %f", rc, strerror(rc), t1 - t0);
H A Dpitest-1.c196 double seconds, t0, t1; local
207 t0 = seconds_read();
210 seconds = t1 - t0;
/haiku-fatelf/src/libs/agg/src/
H A Dagg_trans_affine.cpp72 double t0 = m0 * m.m0 + m1 * m.m2; local
78 m0 = t0;
90 double t0 = m3 * d; local
95 double t4 = -m4 * t0 - m5 * m2;
98 m0 = t0;
/haiku-fatelf/src/libs/ncurses/ncurses/tty/
H A Dlib_twait.c73 static struct timeval t0; local
77 t0 = t1;
81 if (t0.tv_usec > t1.tv_usec) { /* Convert 1s in 1e6 microsecs */
85 res = (t1.tv_sec - t0.tv_sec) * 1000
86 + (t1.tv_usec - t0.tv_usec) / 1000;
90 static time_t t0; local
93 t0 = t1;
95 res = (t1 - t0) * 1000;
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dia64-dis.c71 ia64_insn t0, t1, slot[3], template, s_bit, insn; local
100 t0 = bfd_getl64 (bundle);
102 s_bit = t0 & 1;
103 template = (t0 >> 1) & 0xf;
104 slot[0] = (t0 >> 5) & 0x1ffffffffffLL;
105 slot[1] = ((t0 >> 46) & 0x3ffff) | ((t1 & 0x7fffff) << 18);
/haiku-fatelf/src/tests/kits/opengl/glsl/
H A Dshaderutil.c51 GLdouble t0, t1; local
56 t0 = glutGet(GLUT_ELAPSED_TIME) * 0.001;
60 CompileTime = t1 - t0;
119 GLdouble t0, t1; local
128 t0 = glutGet(GLUT_ELAPSED_TIME) * 0.001;
132 LinkTime = t1 - t0;
/haiku-fatelf/src/libs/tiff/
H A Dtif_pixarlog.c115 register float t0, t1, t2, t3; local
120 t0 = ToLinearF[cr = wp[0]];
123 op[0] = t0;
131 t0 = ToLinearF[(cr += wp[0]) & mask];
134 op[0] = t0;
139 t0 = ToLinearF[cr = wp[0]];
143 op[0] = t0;
152 t0 = ToLinearF[(cr += wp[0]) & mask];
156 op[0] = t0;
178 register float t0, t local
390 register unsigned char t0, t1, t2, t3; local
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmktime.c283 time_t t, gt, t0, t1, t2; local
344 t0 = ydhms_diff (year, yday, hour, min, sec,
350 for major overflows. A gross check suffices, since if t0
377 int approx_biennia = SHR (t0, ALOG2_SECONDS_PER_BIENNIUM);
394 time_t repaired_t0 = -1 - t0;
400 guessed_offset += repaired_t0 - t0;
401 t0 = repaired_t0;
407 for (t = t1 = t2 = t0, dst2 = 0;
484 *offset = guessed_offset + t - t0;
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dmktime.c276 time_t t, gt, t0, t1, t2; local
335 t0 = ydhms_diff (year, yday, hour, min, sec,
341 for major overflows. A gross check suffices, since if t0
368 int approx_biennia = SHR (t0, ALOG2_SECONDS_PER_BIENNIUM);
385 time_t repaired_t0 = -1 - t0;
391 guessed_offset += repaired_t0 - t0;
392 t0 = repaired_t0;
398 for (t = t1 = t2 = t0, dst2 = 0;
475 *offset = guessed_offset + t - t0;
/haiku-fatelf/src/libs/crypt/
H A Dcrypt-des.c418 u_int32_t t0, t1; local
422 t0 = (k0 << shifts) | (k0 >> (28 - shifts));
426 en_keysl[round] = comp_maskl[0][(t0 >> 21) & 0x7f]
427 | comp_maskl[1][(t0 >> 14) & 0x7f]
428 | comp_maskl[2][(t0 >> 7) & 0x7f]
429 | comp_maskl[3][t0 & 0x7f]
436 en_keysr[round] = comp_maskr[0][(t0 >> 21) & 0x7f]
437 | comp_maskr[1][(t0 >> 14) & 0x7f]
438 | comp_maskr[2][(t0 >> 7) & 0x7f]
439 | comp_maskr[3][t0
[all...]
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsscanline.c221 double t0, double t1,
248 else if (t1-t0 < 1.0e-8 && iscan0 == iscan1)
277 if (t0 == -0.5 &&
292 hpgs_bezier_path_x(path,i,0.5*(t0+t1)),
301 hpgs_bezier_path_x(path,i,t0),
313 else if (t1-t0 < 1.0e-15)
320 double tmid = 0.5*(t0+t1);
336 if (bezier_clipper_cut (c,path,i,t0,tmid,y0,y1l,y2l,ymid) < -1)
629 double t0; member in struct:hpgs_bezier_clipper_thin_cut_data_st
669 double t0, doubl
219 bezier_clipper_cut(hpgs_paint_clipper *c, hpgs_paint_path *path, int i, double t0, double t1, double y0, double y1, double y2, double y3 ) argument
668 bezier_clipper_thin_cut(hpgs_bezier_clipper_thin_cut_data *d, double t0, double t1, double y0, double y1, double y2, double y3 ) argument
836 thin_cut_segment(hpgs_paint_clipper *c, hpgs_paint_path *path, int i0, double t0, int i1, double t1 ) argument
1041 double t0=-0.5; local
1272 bezier_clipper_alpha_cut_isolate_extrema(hpgs_bezier_clipper_alpha_cut_data *d, double t0, double t1, double y0, double y1, double y2, double y3, hpgs_bool do_max ) argument
1335 bezier_clipper_alpha_cut(hpgs_bezier_clipper_alpha_cut_data *d, double t0, double t1, double y0, double y1, double y2, double y3 ) argument
[all...]
H A Dhpgsbezier.c137 double t0, double t1, double *t)
145 return t[0] > t0 && t[0] < t1;
163 return t[0] > t0 && t[0] < t1;
167 if (t[0] <= t0 || t[0] >= t1)
170 return t[0] > t0 && t[0] < t1;
173 if (t[1] <= t0 || t[1] >= t1)
189 parameter interval from \c t0 to \c t1.
200 double t0, double t1,
224 *nx = quad_roots (a,b,c,t0,t1,tx);
258 parameter interval from \c t0 t
136 quad_roots(double a, double b, double c, double t0, double t1, double *t) argument
199 hpgs_bezier_path_singularities(const hpgs_paint_path *path, int i, double t0, double t1, int *nx, double *tx) argument
268 hpgs_bezier_path_to_quadratic(const hpgs_paint_path *path, int i, double t0, double t1, int *nx, hpgs_point *points) argument
[all...]
H A Dhpgspaintpath.c692 curve parameter \c t0 (t=-0.5 start of segment, t=0.5 end of segment).
706 int i0, double t0, hpgs_line_cap cap0,
720 double tt1 = i==i0 ? t0 : -0.5;
790 double tt2 = i==i0 ? t0 : -0.5;
930 int i0, double t0, hpgs_line_cap cap0,
989 int i0, double t0, hpgs_line_cap cap0,
1000 double t0=-0.5; local
1036 t0 = -0.5;
1102 i0,t0,cap0,
1111 t0
704 extrude_segment(const hpgs_paint_path *_this, hpgs_paint_path *path, int i0, double t0, hpgs_line_cap cap0, int i1, double t1, hpgs_line_cap cap1, double d, int closed, hpgs_line_join join, double ml) argument
924 decompose_solid(const hpgs_paint_path *_this, hpgs_paint_path *path, const hpgs_gstate *gstate, int (*segment_processor) (const hpgs_paint_path *_this, hpgs_paint_path *path, int i0, double t0, hpgs_line_cap cap0, int i1, double t1, hpgs_line_cap cap1, double d, int closed, hpgs_line_join join, double ml), int (*dot_processor) (hpgs_paint_path *path, const hpgs_point *p, hpgs_line_cap cap, double d) ) argument
983 decompose_dashed(const hpgs_paint_path *_this, hpgs_paint_path *path, const hpgs_gstate *gstate, int (*segment_processor) (const hpgs_paint_path *_this, hpgs_paint_path *path, int i0, double t0, hpgs_line_cap cap0, int i1, double t1, hpgs_line_cap cap1, double d, int closed, hpgs_line_join join, double ml), int (*dot_processor) (hpgs_paint_path *path, const hpgs_point *p, hpgs_line_cap cap, double d) ) argument
1188 append_segment(const hpgs_paint_path *_this, hpgs_paint_path *path, int i0, double t0, hpgs_line_cap cap0, int i1, double t1, hpgs_line_cap cap1, double d, int closed, hpgs_line_join join, double ml) argument
[all...]
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dmktime.c186 time_t t, dt, t0; local
237 t0 = ydhms_tm_diff (year, yday, hour, min, sec, &tm);
239 for (t = t0 + *offset;
272 *offset = t - t0;
/haiku-fatelf/src/bin/gawk/missing_d/
H A Dmktime.c186 time_t t, dt, t0; local
237 t0 = ydhms_tm_diff (year, yday, hour, min, sec, &tm);
239 for (t = t0 + *offset;
272 *offset = t - t0;
/haiku-fatelf/src/add-ons/media/media-add-ons/finepix_webcam/FinePixJpeg/
H A Dfinepix-jpeg.c620 XPP(t0, t1), \
623 XPP(t0, t3), \
633 XPP(t0, t7), \
652 PREC t0, t1, t2, t3, t4, t5, t6, t7, t; local
657 t0 = off;
659 t0 += in[0] * quant[0];
661 out[i] = ITOINT(t0);
668 t0 += in[j] * quant[j];
684 tmpp[0 * 8] = t0;
693 t0
[all...]
/haiku-fatelf/src/tests/kits/opengl/demos/gears/
H A Dgears.c237 static double t0 = -1.; local
239 if (t0 < 0.0)
240 t0 = t;
241 dt = t - t0;
242 t0 = t;

Completed in 170 milliseconds

12