Searched defs:sign (Results 251 - 275 of 406) sorted by relevance

<<11121314151617

/external/libxaac/decoder/
H A Dixheaacd_env_extr.c320 WORD sign = (cw & 0x0080); local
321 if (sign) {
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_text.c197 int sign = (*cur == '-' ? -1 : 1); local
203 *val *= sign;
/external/mesa3d/src/mesa/drivers/dri/common/
H A Dxmlconfig.c168 * number may have an optional sign. Radix is specified by base. If
177 int sign = 1; local
184 sign = -1;
219 return sign * result;
225 * number may have an optional sign. '.' is interpreted as decimal
236 float sign = 1.0f, result = 0.0f, scale; local
239 /* sign */
241 sign = -1.0f;
279 scale = sign * (float)pow (10.0, (double)(pointPos-1 + exponent));
/external/mesa3d/src/mesa/main/
H A Dtexcompress_bptc.c715 bool sign; local
723 sign = false;
726 sign = true;
735 if (sign)
1492 bool sign = false; local
1500 sign = true;
1505 if (sign)
/external/python/cpython2/Modules/
H A Daudioop.c165 /* Get the sign and the magnitude of the value. */
179 * Combine the sign, segment, quantization bits;
263 mask = 0xD5; /* sign (7th) bit = 1 */
265 mask = 0x55; /* sign bit = 0 */
272 /* Combine the sign, segment, and quantization bits. */
667 /* Derivative changed sign. Compute difference to last
718 /* Derivative changed sign. Compute difference to
1412 index, sign, vpdiff, diff; local
1457 sign = (diff < 0) ? 8 : 0;
1458 if ( sign ) dif
1527 int len, size, valpred, step, delta, index, sign, vpdiff; local
[all...]
H A Dmmapmodule.c274 int sign = reverse ? -1 : 1; local
294 (p >= start_p) && (p + len <= end_p); p += sign) {
/external/python/cpython2/Objects/stringlib/
H A Dformatter.h118 /* returns true if this character is a sign element */
135 STRINGLIB_CHAR sign; member in struct:__anon19589
151 printf("internal format spec: sign %d\n", format->sign);
188 format->sign = '\0';
209 /* Parse the various sign options */
211 format->sign = ptr[0];
384 char sign; member in struct:__anon19591
385 Py_ssize_t n_sign; /* number of digits needed for sign (0/1) */
454 spec->sign
[all...]
/external/python/cpython3/Modules/_decimal/libmpdec/
H A Dio.c200 uint8_t sign = MPD_POS; local
206 /* sign */
212 sign = MPD_NEG;
218 mpd_setspecial(dec, sign, MPD_NAN);
234 mpd_setspecial(dec, sign, MPD_SNAN);
251 mpd_setspecial(dec, sign, MPD_INF);
363 char sign = '+'; local
366 sign = '-';
369 *s++ = sign;
777 spec->sign
965 _mpd_add_sep_dot(mpd_mbstr_t *dest, const char *sign, const char *src, mpd_ssize_t n_src, const char *dot, const char *rest, mpd_ssize_t n_rest, const mpd_spec_t *spec) argument
1073 const char *sign = NULL, *intpart = NULL, *dot = NULL; local
[all...]
H A Dmpdecimal.h395 char sign; /* sign printing/alignment */ member in struct:mpd_spec_t
429 /* set a special with sign and type */
430 void mpd_setspecial(mpd_t *dec, uint8_t sign, uint8_t type);
768 EXTINLINE void mpd_set_sign(mpd_t *result, uint8_t sign);
769 /* copy sign from another decimal */
/external/python/cpython3/Modules/
H A Daudioop.c153 /* Get the sign and the magnitude of the value. */
167 * Combine the sign, segment, quantization bits;
248 mask = 0xD5; /* sign (7th) bit = 1 */
250 mask = 0x55; /* sign bit = 0 */
257 /* Combine the sign, segment, and quantization bits. */
784 /* Derivative changed sign. Compute difference to last
840 /* Derivative changed sign. Compute difference to
1624 index, sign, vpdiff, diff; local
1664 sign = 8;
1668 sign
1752 int valpred, step, delta, index, sign, vpdiff; local
[all...]
H A Dmmapmodule.c301 int sign = reverse ? -1 : 1; local
323 (p >= start_p) && (p + len <= end_p); p += sign) {
/external/python/cpython3/Python/
H A Dformatter_unicode.c105 /* returns true if this character is a sign element */
130 Py_UCS4 sign; member in struct:__anon20268
145 printf("internal format spec: sign %d\n", format->sign);
183 format->sign = '\0';
204 /* Parse the various sign options */
206 format->sign = READ_spec(pos);
322 assert (format->sign <= 127);
409 char sign; member in struct:__anon20270
410 Py_ssize_t n_sign; /* number of digits needed for sign (
[all...]
/external/tensorflow/tensorflow/contrib/keras/api/keras/backend/
H A D__init__.py132 from tensorflow.python.keras._impl.keras.backend import sign namespace
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
H A Dcore.py1103 sign = define_unary_op('sign', math_ops.sign) variable
/external/tensorflow/tensorflow/core/kernels/
H A Dcwise_ops.h587 struct sign : base<T, Eigen::internal::scalar_sign_op<T>> {}; struct in namespace:tensorflow::functor
/external/tensorflow/tensorflow/python/keras/backend/
H A D__init__.py132 from tensorflow.python.keras._impl.keras.backend import sign namespace
/external/tensorflow/tensorflow/python/ops/
H A Dmath_ops.py37 @@sign
419 @tf_export("sign")
420 def sign(x, name=None): function
421 """Returns an element-wise indication of the sign of a number.
423 `y = sign(x) = -1` if `x < 0`; 0 if `x == 0` or `tf.is_nan(x)`; 1 if `x > 0`.
427 For complex numbers, `y = sign(x) = x / |x|` if `x != 0`, otherwise `y = 0`.
438 Equivalent to numpy.sign except for the behavior for input values of NaN.
443 x_sign = gen_math_ops.sign(x.values, name=name)
447 return gen_math_ops.sign(x, name=name)
/external/v8/src/arm/
H A Ddisasm-arm.cc604 } else if (format[1] == 'i') { // 'sign: signed extra loads and stores
605 DCHECK(STRING_STARTS_WITH(format, "sign"));
847 Format(instr, "'memop'cond'sign'h 'rd, ['rn], -'rm");
849 Format(instr, "'memop'cond'sign'h 'rd, ['rn], #-'off8");
855 Format(instr, "'memop'cond'sign'h 'rd, ['rn], +'rm");
857 Format(instr, "'memop'cond'sign'h 'rd, ['rn], #+'off8");
863 Format(instr, "'memop'cond'sign'h 'rd, ['rn, -'rm]'w");
865 Format(instr, "'memop'cond'sign'h 'rd, ['rn, #-'off8]'w");
871 Format(instr, "'memop'cond'sign'h 'rd, ['rn, +'rm]'w");
873 Format(instr, "'memop'cond'sign'
1585 const char* sign = instr->Bit(23) != 0 ? "u" : "s"; local
[all...]
/external/valgrind/none/tests/ppc32/
H A Dround.c55 unsigned int sign:1; member in struct:__anon29722::__anon29723
57 unsigned int sign:1;
71 unsigned int sign:1; member in struct:__anon29724::__anon29725
73 unsigned int sign:1;
135 msg, D.dbl, (D.layout.sign == 0 ? '+' : '-'),
150 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
164 if ((R.layout.sign != E.layout.sign) ||
238 F.layout.sign = 0;
246 D.layout.sign
[all...]
/external/valgrind/none/tests/ppc64/
H A Dround.c55 unsigned int sign:1; member in struct:__anon29771::__anon29772
57 unsigned int sign:1;
71 unsigned int sign:1; member in struct:__anon29773::__anon29774
73 unsigned int sign:1;
135 msg, D.dbl, (D.layout.sign == 0 ? '+' : '-'),
150 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
164 if ((R.layout.sign != E.layout.sign) ||
238 F.layout.sign = 0;
246 D.layout.sign
[all...]
/external/vixl/src/aarch32/
H A Ddisasm-aarch32.h318 virtual DisassemblerStream& operator<<(Sign sign) { argument
319 os_ << sign; local
/external/vixl/src/aarch64/
H A Dsimulator-aarch64.h56 // sign: 0 = positive, 1 = negative
70 T FPRound(int64_t sign, argument
74 VIXL_ASSERT((sign == 0) || (sign == 1));
137 return static_cast<T>(sign << sign_offset);
162 return static_cast<T>((sign << sign_offset) |
187 return static_cast<T>(sign << sign_offset);
193 return static_cast<T>((sign << sign_offset) | 1);
216 static_cast<T>((sign << sign_offset) | (exponent << exponent_offset) |
237 return static_cast<T>((sign << sign_offse
[all...]
/external/vulkan-validation-layers/libs/cjson/
H A DcJSON.c91 double n = 0, sign = 1, scale = 0; local
94 if (*num == '-') sign = -1, num++; /* Has sign? */
111 signsubscale = -1, num++; /* With sign? */
115 n = sign * n * pow(10.0, (scale + subscale * signsubscale)); /* number = +/-
/external/webp/src/dsp/
H A Denc.c659 const int sign = (in[j] < 0); local
660 const uint32_t coeff = (sign ? -in[j] : in[j]) + mtx->sharpen_[j];
667 if (sign) level = -level;
H A Denc_mips_dsp_r2.c1197 "shra.ph %[sign], %[temp1], 15 \n\t" \
1216 "andi %[temp6], %[sign], 0xffff \n\t" \
1232 "srl %[temp6], %[sign], 16 \n\t" \
1260 "xor %[level], %[level], %[sign] \n\t" \
1261 "subu.ph %[level], %[level], %[sign] \n\t" \
1278 int sign, coeff, level; local
1304 [sign]"=&r"(sign), [coeff]"=&r"(coeff),

Completed in 758 milliseconds

<<11121314151617