/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/ |
D | ICUDurationTest.java | 81 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { in ICUTestDuration() argument 82 sign = sgn; in ICUTestDuration() 92 private ICUTestDuration(int sgn, Map<Field, Number> f) { in ICUTestDuration() argument 93 sign = sgn; in ICUTestDuration() 156 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { in newDuration() argument 157 return new ICUTestDuration(sgn, -1, -1, d, h, m, s); in newDuration() 159 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) { in newDuration() argument 160 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s); in newDuration() 162 private static final ICUTestDuration newDuration(int sgn, float s) { in newDuration() argument 163 return new ICUTestDuration(sgn, -1, -1, -1, -1, -1, s); in newDuration()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/ |
D | ICUDurationTest.java | 84 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { in ICUTestDuration() argument 85 sign = sgn; in ICUTestDuration() 95 private ICUTestDuration(int sgn, Map<Field, Number> f) { in ICUTestDuration() argument 96 sign = sgn; in ICUTestDuration() 159 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { in newDuration() argument 160 return new ICUTestDuration(sgn, -1, -1, d, h, m, s); in newDuration() 162 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) { in newDuration() argument 163 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s); in newDuration() 165 private static final ICUTestDuration newDuration(int sgn, float s) { in newDuration() argument 166 return new ICUTestDuration(sgn, -1, -1, -1, -1, -1, s); in newDuration()
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | lstreg.txt | 446 language | sgn | Sign Languages | 2004-07-06 | | 951 grandfathered | sgn-BE-fr | Belgian-French Sign Language | 2001-11-11 | | 952 grandfathered | sgn-BE-nl | Belgian-Flemish Sign Language | 2001-11-11 | | 953 grandfathered | sgn-CH-de | Swiss German Sign Language | 2001-11-11 | | 980 redundant | sgn-BR | Brazilian Sign Language | 2001-11-11 | | # use language sgn + region BR 981 redundant | sgn-CO | Colombian Sign Language | 2001-11-11 | | # use language sgn + region CO 982 redundant | sgn-DE | German Sign Language | 2001-11-11 | | # use language sgn + region DE 983 redundant | sgn-DK | Danish Sign Language | 2001-11-11 | | # use language sgn + region DK 984 redundant | sgn-ES | Spanish Sign Language | 2001-11-11 | | # use language sgn + region ES 985 redundant | sgn-FR | French Sign Language | 2001-11-11 | | # use language sgn + region FR [all …]
|
D | language-subtag-registry | 31343 Subtag: sgn 42161 Prefix: sgn 42184 Prefix: sgn 42191 Prefix: sgn 42206 Prefix: sgn 42277 Prefix: sgn 42285 Prefix: sgn 42292 Prefix: sgn 42299 Prefix: sgn 42306 Prefix: sgn [all …]
|
D | langtagRegex.txt | 48 | sgn $s (?: BE $s (?: fr | nl) | CH $s de )
|
/external/webrtc/webrtc/modules/audio_processing/aecm/ |
D | aecm_core_mips.c | 1544 int32_t tt, sgn; in ComfortNoise() local 1546 sgn = ((int)tt) >> 31; in ComfortNoise() 1547 out[0].real = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn); in ComfortNoise() 1549 sgn = ((int)tt) >> 31; in ComfortNoise() 1550 out[0].imag = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn); in ComfortNoise() 1553 sgn = ((int)tt) >> 31; in ComfortNoise() 1554 out[i].real = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn); in ComfortNoise() 1556 sgn = ((int)tt) >> 31; in ComfortNoise() 1557 out[i].imag = sgn == (int16_t)(tt >> 15) ? (int16_t)tt : (16384 ^ sgn); in ComfortNoise() 1560 sgn = ((int)tt) >> 31; in ComfortNoise() [all …]
|
/external/libaom/libaom/tools/ |
D | gen_constrained_tokenset.py | 75 sgn = np.sign(L - q.sum()) # direction of correction 76 if sgn != 0: # correction is needed 79 q_adj = q[i] + sgn 87 q[i] += sgn 89 q_adj = q[i] + sgn
|
/external/epid-sdk/ext/ipp/sources/ippcp/ |
D | pcpbnsetwords.c | 75 IPPFUN(IppStatus, ippsSet_BN, (IppsBigNumSGN sgn, int length, const Ipp32u* pData, 97 sgn = ippBigNumPOS; /* consider zero value as positive */ 98 BN_SIGN(pBN) = sgn;
|
D | pcpbn.h | 64 IppsBigNumSGN sgn; /* sign */ member 73 #define BN_SIGN(pBN) ((pBN)->sgn)
|
D | pcpmont_expsafebinary.c | 89 pY->sgn = ippBigNumPOS; in cpSafeMontExp_Binary() 176 pY->sgn = ippBigNumPOS; in cpSafeMontExp_Binary()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | 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/pdfium/third_party/lcms/ |
D | 0023-upstream-integer-overflow-MPEmatrix_Read.patch | 43 - int sgn; 45 + cmsInt32Number sgn; 47 NextCh(it8); sgn = 1;
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_libc.cc | 240 int sgn = 1; in internal_simple_strtoll() local 245 sgn = 1; in internal_simple_strtoll() 248 sgn = -1; in internal_simple_strtoll() 261 if (sgn > 0) { in internal_simple_strtoll()
|
/external/fdlibm/ |
D | 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;
|
/external/libaom/libaom/tools/txfm_analyzer/ |
D | txfm_gen_code.cc | 59 char *sgn = w < 0 ? n : p; in cos_text_sse4_1() local 60 snprintf(text, size, "cospi_%s%02d", sgn, idx); in cos_text_sse4_1() 403 int sgn = w < 0 ? 1 : 0; in gen_cospi_list_sse4_1() local 405 if (!visited[idx][sgn]) { in gen_cospi_list_sse4_1() 406 visited[idx][sgn] = 1; in gen_cospi_list_sse4_1()
|
/external/pdfium/third_party/lcms/src/ |
D | cmscgats.c | 573 cmsInt32Number sgn; in ReadReal() local 575 NextCh(it8); sgn = 1; in ReadReal() 579 sgn = -1; NextCh(it8); in ReadReal() 584 sgn = +1; in ReadReal() 597 e = sgn*e; in ReadReal() 648 int sgn; in ParseFloatNumber() local 651 sgn = 1; in ParseFloatNumber() 655 sgn = -1; in ParseFloatNumber() 661 sgn = +1; in ParseFloatNumber() 674 e = sgn*e; in ParseFloatNumber()
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | util.py | 1113 sgn = array_ops.ones_like(lswe) 1114 return lswe, sgn 1133 sgn = math_ops.sign(sum_wx_over_max_absw_x) 1134 lswe = max_log_absw_x + math_ops.log(sgn * sum_wx_over_max_absw_x) 1136 return lswe, sgn
|
/external/epid-sdk/epid/common/math/src/ |
D | bignum.c | 322 IppsBigNumSGN sgn; in BigNumIsEven() local 332 sts = ippsRef_BN(&sgn, &bit_size, &data, a->ipp_bn); in BigNumIsEven()
|
D | ecgroup.c | 68 IppsBigNumSGN sgn; in NewEcGroup() local 105 ipp_status = ippsRef_BN(&sgn, &order_bnu_size, &order_bnu, order->ipp_bn); in NewEcGroup() 113 ippsRef_BN(&sgn, &cofactor_bnu_size, &cofactor_bnu, cofactor->ipp_bn); in NewEcGroup()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | langtagRegex.txt | 51 | sgn $s (?: BE $s (?: fr | nl) | CH $s de )
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | langtagRegex.txt | 51 | sgn $s (?: BE $s (?: fr | nl) | CH $s de )
|
/external/mesa3d/src/amd/common/ |
D | ac_llvm_build.c | 544 LLVMValueRef sgn; in build_cube_select() local 560 sgn = LLVMBuildSelect(builder, is_ma_y, LLVMConstReal(f32, 1.0), in build_cube_select() 563 out_st[0] = LLVMBuildFMul(builder, tmp, sgn, ""); in build_cube_select() 567 sgn = LLVMBuildSelect(builder, is_ma_y, sgn_ma, in build_cube_select() 569 out_st[1] = LLVMBuildFMul(builder, tmp, sgn, ""); in build_cube_select()
|
/external/swiftshader/src/Pipeline/ |
D | ShaderCore.hpp | 334 void sgn(Vector4f &dst, const Vector4f &src); 374 void sgn(Float4 &dst, const Float4 &src);
|
/external/swiftshader/src/Shader/ |
D | ShaderCore.hpp | 334 void sgn(Vector4f &dst, const Vector4f &src); 374 void sgn(Float4 &dst, const Float4 &src);
|
/external/compiler-rt/lib/msan/tests/ |
D | msan_test.cc | 1809 int sgn; in TEST() local 1810 double res = lgamma_r(1.1, &sgn); in TEST() 1812 EXPECT_NOT_POISONED(sgn); in TEST() 1816 int sgn; in TEST() local 1817 float res = lgammaf_r(1.1, &sgn); in TEST() 1819 EXPECT_NOT_POISONED(sgn); in TEST() 1825 int sgn; in TEST() local 1826 long double res = lgammal_r(1.1, &sgn); in TEST() 1828 EXPECT_NOT_POISONED(sgn); in TEST()
|