HomeSort by relevance Sort by last modified time
    Searched refs:sgn (Results 1 - 25 of 31) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
math.s 27 .int $sgn(-1.0)
28 .int $sgn(0)
29 .int $sgn(1)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
xcoff-br16-1.d 8 vaddr sgn mod sz type symndx symbol
xcoff-br16-2.d 8 vaddr sgn mod sz type symndx symbol
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
ICUDurationTest.java 79 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) {
80 sign = sgn;
90 private ICUTestDuration(int sgn, Map<Field, Number> f) {
91 sign = sgn;
154 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) {
155 return new ICUTestDuration(sgn, -1, -1, d, h, m, s);
157 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) {
158 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s);
160 private static final ICUTestDuration newDuration(int sgn, float s) {
161 return new ICUTestDuration(sgn, -1, -1, -1, -1, -1, s)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
ICUDurationTest.java 78 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) {
79 sign = sgn;
89 private ICUTestDuration(int sgn, Map<Field, Number> f) {
90 sign = sgn;
153 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) {
154 return new ICUTestDuration(sgn, -1, -1, d, h, m, s);
156 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) {
157 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s);
159 private static final ICUTestDuration newDuration(int sgn, float s) {
160 return new ICUTestDuration(sgn, -1, -1, -1, -1, -1, s)
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aecm/
aecm_core_mips.c 1544 int32_t tt, sgn; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jnf.c 37 int32_t i,hx,ix, sgn; local
55 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
169 if(sgn==1) return -b; else return b;
e_jn.c 58 int32_t i,hx,ix,lx, sgn; local
76 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
213 if(sgn==1) return -b; else return b;
  /packages/apps/Camera2/jni/
jpegutil.h 34 inline int sgn(int val) { return (0 < val) - (val < 0); } function in namespace:jpegutil
225 int dx = sgn(endX - startX);
226 int dy = sgn(endY - startY);
  /external/mesa3d/src/amd/common/
ac_llvm_util.c 389 LLVMValueRef sgn; local
405 sgn = LLVMBuildSelect(builder, is_ma_y, LLVMConstReal(f32, 1.0),
408 out_st[0] = LLVMBuildFMul(builder, tmp, sgn, "");
412 sgn = LLVMBuildSelect(builder, is_ma_y, LLVMBuildFNeg(builder, sgn_ma, ""),
414 out_st[1] = LLVMBuildFMul(builder, tmp, sgn, "");
419 sgn = LLVMBuildSelect(builder, is_ma_positive,
421 *out_ma = LLVMBuildFMul(builder, tmp, sgn, "");
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_tgamma.c 278 int sgn = 1; local
290 sgn = -1;
298 return ((double)sgn*tiny*tiny);
307 if (sgn < 0) y = -y;
315 if (sgn < 0) y = -y;
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_inlines.h 107 bool flt = false, bool sgn = false)
110 case 1: return sgn ? TYPE_S8 : TYPE_U8;
111 case 2: return flt ? TYPE_F16 : (sgn ? TYPE_S16 : TYPE_U16);
112 case 8: return flt ? TYPE_F64 : (sgn ? TYPE_S64 : TYPE_U64);
116 return flt ? TYPE_F32 : (sgn ? TYPE_S32 : TYPE_U32);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 240 int sgn = 1; local
245 sgn = 1;
248 sgn = -1;
261 if (sgn > 0) {
  /external/fdlibm/
e_jn.c 60 int i,hx,ix,lx, sgn; local
79 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
211 if(sgn==1) return -b; else return b;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoCarousel.java 227 public void flip(float sgn) {
242 frontY = lockTo180(frontY + sgn * 180f);
243 backY = lockTo180(backY + sgn * 180f);
  /external/swiftshader/src/Shader/
ShaderCore.hpp 313 void sgn(Vector4f &dst, const Vector4f &src);
353 void sgn(Float4 &dst, const Float4 &src);
ShaderCore.cpp 1343 void ShaderCore::sgn(Vector4f &dst, const Vector4f &src) function in class:sw::ShaderCore
1598 void ShaderCore::sgn(Float4 &dst, const Float4 &src) function in class:sw::ShaderCore
    [all...]
PixelProgram.cpp 244 case Shader::OPCODE_SGN: sgn(d, s0); break;
    [all...]
VertexProgram.cpp 283 case Shader::OPCODE_SGN: sgn(d, s0); break;
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 1809 int sgn; local
1816 int sgn; local
1825 int sgn; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
Enquire.c 1470 #define sgn macro
    [all...]
  /external/v8/src/js/
i18n.js 918 'i-tsu|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)';
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 408 friend int sgn(const mpreal& v); // returns -1 or +1
1934 inline int sgn(const mpreal& op) function in namespace:mpfr
    [all...]
  /external/webrtc/talk/media/testdata/
voice.rtpdump     [all...]
  /external/sqlite/dist/orig/
sqlite3.c 19051 int sgn = 0; local
    [all...]

Completed in 2081 milliseconds

1 2