Searched refs:sign (Results 1 - 25 of 174) sorted by relevance

1234567

/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
H A Ddtoa.h8 int *decpt, int *sign, char **rve);
H A Dfloatobject.h34 #define Py_RETURN_INF(sign) do \
35 if (copysign(1., sign) == 1.) { \
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
H A Ddtoa.h8 int *decpt, int *sign, char **rve);
H A Dfloatobject.h34 #define Py_RETURN_INF(sign) do \
35 if (copysign(1., sign) == 1.) { \
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dfpformat.py24 # \1 leading sign or empty
36 """Return (sign, intpart, fraction, expo) or raise an exception:
37 sign is '+' or '-'
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
44 if sign == '+': sign = ''
48 return sign, intpart, fraction, expo
96 sign, intpart, fraction, expo = extract(x)
103 if digs > 0: return sign + intpart + '.' + fraction
104 else: return sign
[all...]
H A Ddecimal.py145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
216 also a quiet NaN, but with the original sign, and an optional
243 The result of the operation is [sign,inf], where sign is the exclusive
248 def handle(self, context, sign, *args):
249 return _SignedInfinity[sign]
333 round-up, if implemented), the result of the operation is [sign,inf],
334 where sign is the sign of the intermediate result. For round-down, the
336 current precision, with the sign o
[all...]
H A Dstringold.py215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
321 sign = ''
323 sign, s = s[0], s[1:]
324 return sign + '0'*(width-n) + s
H A Dlocale.py156 # only non-digit characters remain (sign, spaces)
268 # '<' and '>' are markers if the sign must be inserted between symbol and value
282 sign = conv[val<0 and 'negative_sign' or 'positive_sign']
287 s = sign + s
289 s = s + sign
291 s = s.replace('<', sign)
293 s = s.replace('>', sign)
296 # this should be the most fitting sign position
297 s = sign + s
H A Daifc.py185 sign = 1
187 sign = -1
198 return sign * f
223 sign = 0x8000
226 sign = 0
234 expon = sign|0x7FFF
242 expon = expon | sign
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dfpformat.py24 # \1 leading sign or empty
36 """Return (sign, intpart, fraction, expo) or raise an exception:
37 sign is '+' or '-'
43 sign, intpart, fraction, exppart = res.group(1,2,3,4)
44 if sign == '+': sign = ''
48 return sign, intpart, fraction, expo
96 sign, intpart, fraction, expo = extract(x)
103 if digs > 0: return sign + intpart + '.' + fraction
104 else: return sign
[all...]
H A Ddecimal.py145 DecimalTuple = _namedtuple('DecimalTuple', 'sign digits exponent')
216 also a quiet NaN, but with the original sign, and an optional
243 The result of the operation is [sign,inf], where sign is the exclusive
248 def handle(self, context, sign, *args):
249 return _SignedInfinity[sign]
333 round-up, if implemented), the result of the operation is [sign,inf],
334 where sign is the sign of the intermediate result. For round-down, the
336 current precision, with the sign o
[all...]
H A Dstringold.py215 or more digits, possibly preceded by a sign. If base is 0, it
242 of one or more digits, possibly preceded by a sign. If base
321 sign = ''
323 sign, s = s[0], s[1:]
324 return sign + '0'*(width-n) + s
H A Dlocale.py156 # only non-digit characters remain (sign, spaces)
268 # '<' and '>' are markers if the sign must be inserted between symbol and value
282 sign = conv[val<0 and 'negative_sign' or 'positive_sign']
287 s = sign + s
289 s = s + sign
291 s = s.replace('<', sign)
293 s = s.replace('>', sign)
296 # this should be the most fitting sign position
297 s = sign + s
H A Daifc.py185 sign = 1
187 sign = -1
198 return sign * f
223 sign = 0x8000
226 sign = 0
234 expon = sign|0x7FFF
242 expon = expon | sign
/prebuilts/misc/scripts/vboot_signer/
H A Dvboot_signer.sh39 echo ERROR: unable to sign image
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
H A Dupload.py23 ('sign', 's',
24 'sign files to upload using gpg'),
25 ('identity=', 'i', 'GPG identity used to sign files'),
28 boolean_options = PyPIRCCommand.boolean_options + ['sign']
35 self.sign = False
40 if self.identity and not self.sign:
42 "Must use --sign for --identity to have meaning"
73 if self.sign:
74 gpg_args = ["gpg", "--detach-sign", "-a", filename]
129 if self.sign
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
H A Dupload.py23 ('sign', 's',
24 'sign files to upload using gpg'),
25 ('identity=', 'i', 'GPG identity used to sign files'),
28 boolean_options = PyPIRCCommand.boolean_options + ['sign']
35 self.sign = False
40 if self.identity and not self.sign:
42 "Must use --sign for --identity to have meaning"
73 if self.sign:
74 gpg_args = ["gpg", "--detach-sign", "-a", filename]
129 if self.sign
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
H A Dutils.py162 sign = '-'
164 sign = '+'
165 zone = '%s%02d%02d' % (sign, hours, minutes // 60)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
H A Dutils.py162 sign = '-'
164 sign = '+'
165 zone = '%s%02d%02d' % (sign, hours, minutes // 60)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/centrality/
H A Deigenvector.py157 norm=np.sign(largest.sum())*np.linalg.norm(largest)
H A Dkatz.py282 norm = np.sign(sum(centrality)) * np.linalg.norm(centrality)
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
H A Dclast.h116 int sign; member in struct:clast_equation
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
H A Dclast.h116 int sign; member in struct:clast_equation
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/
H A Dsqltypes.h193 SQLCHAR sign; member in struct:tagSQL_NUMERIC_STRUCT
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
H A Dsqltypes.h193 SQLCHAR sign; member in struct:tagSQL_NUMERIC_STRUCT

Completed in 581 milliseconds

1234567