HomeSort by: relevance | last modified time | path
    Searched defs:p_exp (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/ntp/dist/tests/libntp/
caljulian.c 47 const char * p_exp = CalendarToString(expected); local
49 printf("expected: %s but was %s", p_exp, p_act);
calendar.c 139 char *p_exp = CalendarFromCalToString(expected); local
142 printf("expected: %s but was %s", p_exp, p_act);
144 free(p_exp);
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid128_mul.c 112 UINT64 x_exp, y_exp, p_exp; local
172 // true_p_exp, p_exp are used only for 0 * 0, 0 * f, or f * 0
174 p_exp = 0; // cannot be less than EXP_MIN
176 p_exp = (UINT64) (369 + 398) << 53; // cannot be more than EXP_MAX
178 p_exp = (UINT64) (true_p_exp + 398) << 53;
184 res = p_sign | p_exp; // preferred exponent in [EXP_MIN, EXP_MAX]
331 UINT64 x_exp, y_exp, p_exp; local
390 // true_p_exp, p_exp are used only for 0 * 0, 0 * f, or f * 0
392 p_exp = 0; // cannot be less than EXP_MIN
394 p_exp = (UINT64) (6111 + 6176) << 49; // cannot be more than EXP_MA
    [all...]
bid128_fma.c 658 UINT64 x_exp = 0, y_exp = 0, z_exp = 0, p_exp; local
951 p_exp = 0; // cannot be less than EXP_MIN
953 p_exp = (UINT64) (true_p_exp + 6176) << 49;
957 if (p_exp < z_exp)
958 res.w[1] = p_exp; // preferred exponent
1093 if (z_exp <= p_exp) { // the preferred exponent is z_exp
1096 } else { // if (p_exp < z_exp) the preferred exponent is p_exp
1098 // where scale = min (p34-q3, (z_exp-p_exp) >> 49)
1100 ind = (z_exp - p_exp) >> 49
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid128_mul.c 112 UINT64 x_exp, y_exp, p_exp; local
172 // true_p_exp, p_exp are used only for 0 * 0, 0 * f, or f * 0
174 p_exp = 0; // cannot be less than EXP_MIN
176 p_exp = (UINT64) (369 + 398) << 53; // cannot be more than EXP_MAX
178 p_exp = (UINT64) (true_p_exp + 398) << 53;
184 res = p_sign | p_exp; // preferred exponent in [EXP_MIN, EXP_MAX]
331 UINT64 x_exp, y_exp, p_exp; local
390 // true_p_exp, p_exp are used only for 0 * 0, 0 * f, or f * 0
392 p_exp = 0; // cannot be less than EXP_MIN
394 p_exp = (UINT64) (6111 + 6176) << 49; // cannot be more than EXP_MA
    [all...]
bid128_fma.c 658 UINT64 x_exp = 0, y_exp = 0, z_exp = 0, p_exp; local
951 p_exp = 0; // cannot be less than EXP_MIN
953 p_exp = (UINT64) (true_p_exp + 6176) << 49;
957 if (p_exp < z_exp)
958 res.w[1] = p_exp; // preferred exponent
1093 if (z_exp <= p_exp) { // the preferred exponent is z_exp
1096 } else { // if (p_exp < z_exp) the preferred exponent is p_exp
1098 // where scale = min (p34-q3, (z_exp-p_exp) >> 49)
1100 ind = (z_exp - p_exp) >> 49
    [all...]

Completed in 34 milliseconds