Searched refs:sign (Results 76 - 100 of 3854) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/speex/libspeex/
H A Dvq.c109 /*Finds the indices of the n-best entries in a codebook with sign*/
112 int i,j,k, sign, used; local
121 sign=0;
125 sign=1;
142 if (sign)
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dintnum.h107 * \param sign signed (1) or unsigned (0) LEB128 format
114 (const unsigned char *ptr, int sign, /*@out@*/ unsigned long *size);
119 * \param sign signed (1) or unsigned (0) source
125 (unsigned char *ptr, int sign, size_t srcsize, int bigendian);
207 /** Simple sign check.
279 * \param sign signedness of LEB128 encoding (0=unsigned, 1=signed)
284 unsigned char *ptr, int sign);
288 * \param sign signedness of LEB128 encoding (0=unsigned, 1=signed)
292 unsigned long yasm_intnum_size_leb128(const yasm_intnum *intn, int sign);
/external/icu/icu4c/source/test/intltest/
H A Dthcoll.h67 int8_t sign(int32_t i);
/external/iproute2/lib/
H A DAndroid.mk32 -Wno-sign-compare \
65 -Wno-sign-compare \
/external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
H A Dneg_format.pass.cpp60 assert(p.field[1] == std::money_base::sign);
68 assert(p.field[1] == std::money_base::sign);
76 assert(p.field[1] == std::money_base::sign);
84 assert(p.field[1] == std::money_base::sign);
H A Dpos_format.pass.cpp60 assert(p.field[1] == std::money_base::sign);
68 assert(p.field[1] == std::money_base::sign);
76 assert(p.field[1] == std::money_base::sign);
84 assert(p.field[1] == std::money_base::sign);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.h97 unsigned sign:1; member in struct:lp_type
183 res_type.sign = TRUE;
199 res_type.sign = TRUE;
214 res_type.sign = TRUE;
229 res_type.sign = TRUE;
285 res_type.sign = TRUE;
343 type.sign = TRUE;
359 type.sign = TRUE;
375 type.sign = FALSE;
H A Dlp_bld_conv.c124 LLVMValueRef sign = LLVMBuildShl(builder, justsign, i32_16, ""); local
127 LLVMValueRef sign_inf = LLVMBuildOr(builder, sign, infnanexp, "");
164 src_type.sign = FALSE;
385 src_type.sign == 1 &&
392 dst_type.sign == 0 &&
411 int16_type.sign = 1;
415 int32_type.sign = 1;
440 src_type.sign == 1 &&
447 dst_type.sign == 0 &&
466 int16_type.sign
[all...]
/external/speex/libspeex/
H A Dvq.c109 /*Finds the indices of the n-best entries in a codebook with sign*/
112 int i,j,k, sign, used; local
121 sign=0;
125 sign=1;
142 if (sign)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_conv.c124 LLVMValueRef sign = LLVMBuildShl(builder, justsign, i32_16, ""); local
127 LLVMValueRef sign_inf = LLVMBuildOr(builder, sign, infnanexp, "");
164 src_type.sign = FALSE;
385 src_type.sign == 1 &&
392 dst_type.sign == 0 &&
411 int16_type.sign = 1;
415 int32_type.sign = 1;
440 src_type.sign == 1 &&
447 dst_type.sign == 0 &&
466 int16_type.sign
[all...]
/external/chromium_org/v8/src/
H A Dconversions-inl.h246 // Ignore leading sign; skip following spaces.
461 Sign sign = NONE;
464 // Ignore leading sign.
467 sign = POSITIVE;
471 sign = NEGATIVE;
486 return (sign == NEGATIVE) ? -V8_INFINITY : V8_INFINITY;
492 if (current == end) return SignedZero(sign == NEGATIVE);
499 if (current == end || !isDigit(*current, 16) || sign != NONE) {
512 if (current == end || !isDigit(*current, 8) || sign != NONE) {
525 if (current == end || !isBinaryDigit(*current) || sign !
[all...]
/external/chromium_org/chromeos/cryptohome/
H A Dcryptohome_parameters.cc19 sign(false),
25 bool sign,
30 sign(sign),
39 sign == other.sign &&
50 bool sign,
53 sign,
23 Secret( bool encrypt, bool sign, const std::string& symmetric_key, const std::string& public_key, bool wrapped) argument
48 AuthorizationData( bool encrypt, bool sign, const std::string& symmetric_key) argument
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.cpp233 Decimal::EncodedData::EncodedData(Sign sign, FormatClass formatClass)
237 , m_sign(sign)
241 Decimal::EncodedData::EncodedData(Sign sign, int exponent, uint64_t coefficient)
243 , m_sign(sign)
283 Decimal::Decimal(Sign sign, int exponent, uint64_t coefficient)
284 : m_data(sign, exponent, coefficient)
334 result.m_data.setSign(invertSign(m_data.sign()));
341 const Sign lhsSign = lhs.sign();
342 const Sign rhsSign = rhs.sign();
379 const Sign lhsSign = lhs.sign();
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_c.c22 int16_t sign,
66 tmpW32 = inputBuf[*index2] - WEBRTC_SPL_MUL_16_16(sign, tmpW16);
19 WebRtcIsacfix_PitchFilterCore(int loopNumber, int16_t gain, int index, int16_t sign, int16_t* inputState, int16_t* outputBuf2, const int16_t* coefficient, int16_t* inputBuf, int16_t* outputBuf, int* index2) argument
/external/elfutils/0.153/
H A DMakefile.am49 rpmbuild -ts --sign elfutils-@PACKAGE_VERSION@.tar.bz2
/external/iproute2/tc/
H A DAndroid.mk17 LOCAL_CFLAGS := -O2 -g -W -Wall -Wno-pointer-arith -Wno-sign-compare -Werror
/external/stlport/src/
H A Dfacets_byname.cpp518 case 1: // The sign string precedes the quantity and currency symbol
519 pos_format.field[0] = (char) money_base::sign;
546 case 2: // The sign string succeeds the quantity and currency symbol.
554 pos_format.field[3] = (char) money_base::sign;
558 pos_format.field[2] = (char) money_base::sign;
568 pos_format.field[3] = (char) money_base::sign;
572 pos_format.field[2] = (char) money_base::sign;
577 case 3: // The sign string immediately precedes the currency symbol.
580 pos_format.field[0] = (char) money_base::sign;
594 pos_format.field[1] = (char) money_base::sign;
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_filter_c.c22 WebRtc_Word16 sign,
66 tmpW32 = inputBuf[*index2] - WEBRTC_SPL_MUL_16_16(sign, tmpW16);
19 WebRtcIsacfix_PitchFilterCore(int loopNumber, WebRtc_Word16 gain, int index, WebRtc_Word16 sign, WebRtc_Word16* inputState, WebRtc_Word16* outputBuf2, const WebRtc_Word16* coefficient, WebRtc_Word16* inputBuf, WebRtc_Word16* outputBuf, int* index2) argument
/external/apache-harmony/security/src/test/impl/java.injected/java/security/
H A DSignature_Impl2Test.java114 s.sign();
122 s.sign();
128 s.sign();
131 assertTrue("sign() failed", ((MySignature1) s).runEngineSign);
141 assertTrue("sign() failed", ((MySignature1) s).runEngineUpdate1);
166 s.sign(b, 0, 5);
172 s.sign(b, 0, 3);
174 assertTrue("sign() failed", MySignature2.runEngineSign);
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring_layer.cc26 int sign(int x) { function in namespace:chromeos::__anon3483
52 gfx::Point delta0 = gfx::Point(sign(p.x() - prev.x()),
53 sign(p.y() - prev.y()));
54 gfx::Point delta1 = gfx::Point(sign(next.x() - p.x()),
55 sign(next.y() - p.y()));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c900 char sign = 0; local
913 sign = '-';
914 else if (flags & PRINT_F_PLUS) /* Do a sign. */
915 sign = '+';
917 sign = ' ';
950 - ((sign != 0) ? 1 : 0) /* Will we print a sign? */
973 if (sign != 0) /* Sign. */
974 OUTCHAR(str, *len, size, sign);
1008 char sign local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c900 char sign = 0; local
913 sign = '-';
914 else if (flags & PRINT_F_PLUS) /* Do a sign. */
915 sign = '+';
917 sign = ' ';
950 - ((sign != 0) ? 1 : 0) /* Will we print a sign? */
973 if (sign != 0) /* Sign. */
974 OUTCHAR(str, *len, size, sign);
1008 char sign local
[all...]
/external/openssl/crypto/pkcs7/
H A Dpk7_lib.c78 if (ret && PKCS7_type_is_data(p7->d.sign->contents))
81 os=p7->d.sign->contents->d.data;
83 p7->d.sign->contents->d.data = NULL;
95 if(!p7->d.sign || !p7->d.sign->contents->d.ptr)
137 if (p7->d.sign->contents != NULL)
138 PKCS7_free(p7->d.sign->contents);
139 p7->d.sign->contents=p7_data;
170 if ((p7->d.sign=PKCS7_SIGNED_new()) == NULL)
172 if (!ASN1_INTEGER_set(p7->d.sign
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
H A Dsubtract_sse2.asm104 pcmpgtb xmm1, xmm2 ; obtain sign information
107 punpcklbw xmm0, xmm1 ; put sign back to subtraction
108 punpckhbw xmm2, xmm1 ; put sign back to subtraction
124 pcmpgtb xmm5, xmm1 ; obtain sign information
127 punpcklbw xmm3, xmm5 ; put sign back to subtraction
128 punpckhbw xmm1, xmm5 ; put sign back to subtraction
182 psubb xmm0, xmm1 ; subtraction with sign missed
186 pcmpgtb xmm1, xmm2 ; obtain sign information
190 punpcklbw xmm0, xmm1 ; put sign back to subtraction
191 punpckhbw xmm2, xmm3 ; put sign bac
[all...]
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dsubtract_sse2.asm104 pcmpgtb xmm1, xmm2 ; obtain sign information
107 punpcklbw xmm0, xmm1 ; put sign back to subtraction
108 punpckhbw xmm2, xmm1 ; put sign back to subtraction
124 pcmpgtb xmm5, xmm1 ; obtain sign information
127 punpcklbw xmm3, xmm5 ; put sign back to subtraction
128 punpckhbw xmm1, xmm5 ; put sign back to subtraction
182 psubb xmm0, xmm1 ; subtraction with sign missed
186 pcmpgtb xmm1, xmm2 ; obtain sign information
190 punpcklbw xmm0, xmm1 ; put sign back to subtraction
191 punpckhbw xmm2, xmm3 ; put sign bac
[all...]

Completed in 3206 milliseconds

1234567891011>>