HomeSort by: relevance | last modified time | path
    Searched defs:two (Results 1 - 25 of 116) sorted by relevancy

1 2 3 4 5

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/x86_64/
floatundisf.S 13 two: label
31 mulss REL_ADDR(two), %xmm0
  /src/tests/usr.bin/xlint/lint1/
msg_186.c 11 unsigned two: 2; member in struct:bit_field
msg_105.c 22 struct two { struct
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
anon.c 8 int two; member in struct:outer
pretty-print.c 21 int two; member in struct:s1_t
35 } s1 = { .one = 1, .two = 2,
42 int two; member in struct:s2_t
49 } s2 = { .one = 1, .two = 2, .three = 3, .four = 4 };
structs3.c 23 struct Two
29 struct Two two = { { 1 }, 2, 3 }; variable in typeref:struct:Two
32 typedef struct Two tTwo;
34 tOne *onep = &two.one;
35 tTwo *twop = &two;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
anon.c 8 int two; member in struct:outer
pretty-print.c 21 int two; member in struct:s1_t
35 } s1 = { .one = 1, .two = 2,
42 int two; member in struct:s2_t
49 } s2 = { .one = 1, .two = 2, .three = 3, .four = 4 };
structs3.c 23 struct Two
29 struct Two two = { { 1 }, 2, 3 }; variable in typeref:struct:Two
32 typedef struct Two tTwo;
34 tOne *onep = &two.one;
35 tTwo *twop = &two;
  /src/lib/libm/noieee_src/
n_tanh.c 79 static const double one=1.0, two=2.0, small = 1.0e-10, big = 1.0e10; local
90 return(copysign(one-two/(expm1(x+x)+two),sign));
92 {t= -expm1(-(x+x)); return(copysign(t/(two-t),sign));}
n_pow.c 121 static const double zero=0.0, one=1.0, two=2.0, negone= -1.0; variable
155 else if (y==two)
165 else if ( (t=drem(y,two)) == zero)
  /src/lib/libm/src/
s_tanh.c 45 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
68 t = expm1(two*fabs(x));
69 z = one - two/(t+two);
71 t = expm1(-two*fabs(x));
72 z= -t/(t+two);
s_tanhf.c 24 static const float one=1.0, two=2.0, tiny = 1.0e-30; variable
46 t = expm1f(two*fabsf(x));
47 z = one - two/(t+two);
49 t = expm1f(-two*fabsf(x));
50 z= -t/(t+two);
  /src/external/gpl3/gcc/dist/libquadmath/math/
tanhq.c 46 static const __float128 one = 1.0, two = 2.0, tiny = 1.0e-4900Q; variable
82 t = expm1q (two * u.value);
83 z = one - two / (t + two);
87 t = expm1q (-two * u.value);
88 z = -t / (t + two);
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
tanhq.c 46 static const __float128 one = 1.0, two = 2.0, tiny = 1.0e-4900Q; variable
82 t = expm1q (two * u.value);
83 z = one - two / (t + two);
87 t = expm1q (-two * u.value);
88 z = -t / (t + two);
  /src/external/mit/libcbor/dist/test/
type_4_encoders_test.c 38 cbor_item_t *two = cbor_build_uint8(2); local
40 cbor_array_push(array, two);
45 cbor_decref(&two);
  /src/external/gpl3/binutils/dist/opcodes/
m68k-opc.c 25 #define two(x, y) (((unsigned int) (x) << 16) + (y)) macro
189 {"bfchg", 4, two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
190 {"bfclr", 4, two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
191 {"bfexts", 4, two(0165700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
192 {"bfextu", 4, two(0164700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
193 {"bfffo", 4, two(0166700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
m68k-opc.c 25 #define two(x, y) (((unsigned int) (x) << 16) + (y)) macro
189 {"bfchg", 4, two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
190 {"bfclr", 4, two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
191 {"bfexts", 4, two(0165700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
192 {"bfextu", 4, two(0164700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
193 {"bfffo", 4, two(0166700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
anon-ns2.cc 43 class two class in namespace:__anon18224::A
46 two (void) { } // A::two::two(void) function in class:__anon18224::A::two
47 two (int a) { } // A::two::two(int) function in class:__anon18224::A::two
48 two (char *a) { } // A::two::two(char * function in class:__anon18224::A::two
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
debug-expr.f90 26 type(level_one) :: two(3) component in type:level_two
35 obj%three(1)%two(1)%one(1)%i = 1
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.guile/
scm-symbol.c 59 enum tag {one, two, three}; enumerator in enum:tag
  /src/external/gpl3/gdb/dist/libctf/testsuite/libctf-lookup/
unnamed-field-info-ctf.c 10 int two; member in struct:A::__anon18908::__anon18909
  /src/external/gpl3/gdb/dist/opcodes/
m68k-opc.c 25 #define two(x, y) (((unsigned int) (x) << 16) + (y)) macro
189 {"bfchg", 4, two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
190 {"bfclr", 4, two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up },
191 {"bfexts", 4, two(0165700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
192 {"bfextu", 4, two(0164700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up },
193 {"bfffo", 4, two(0166700, 0), two(0177700, 0100000), "/sO2O3D1", m68020up }
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
anon-ns2.cc 43 class two class in namespace:__anon20968::A
46 two (void) { } // A::two::two(void) function in class:__anon20968::A::two
47 two (int a) { } // A::two::two(int) function in class:__anon20968::A::two
48 two (char *a) { } // A::two::two(char * function in class:__anon20968::A::two
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
debug-expr.f90 26 type(level_one) :: two(3) component in type:level_two
35 obj%three(1)%two(1)%one(1)%i = 1

Completed in 149 milliseconds

1 2 3 4 5