HomeSort by relevance Sort by last modified time
    Searched refs:SIGN (Results 1 - 12 of 12) sorted by null

  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/sparc/
isinf.c 51 #define SIGN 0x80000000
53 if ((d0 & ~(EXPONENT|SIGN)) == 0 && d1 == 0 ) return 0; /* must have bits */
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
l64a.c 32 * but no assumptions are made about sign propagation on right shift
40 #define SIGN (-(1L << (BITSPERLONG - BITSPERCHAR - 1)))
62 /* but suppress sign propagation */
63 lg = ((lg < 0) ? (lg >> BITSPERCHAR) | SIGN :
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
l64a.c 36 * but no assumptions are made about sign propagation on right shift
53 #define SIGN (-(1 << (BITSUSED - BITSPERCHAR - 1)))
78 /* but suppress sign propagation */
79 lg = ((lg < 0) ? (lg >> BITSPERCHAR) | SIGN :
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/unicore/
Name.pl 41 0023 NUMBER SIGN
42 0024 DOLLAR SIGN
43 0025 PERCENT SIGN
49 002B PLUS SIGN
66 003C LESS-THAN SIGN
67 003D EQUALS SIGN
68 003E GREATER-THAN SIGN
167 00A2 CENT SIGN
168 00A3 POUND SIGN
169 00A4 CURRENCY SIGN
    [all...]
  /onnv/onnv-gate/usr/src/common/mpi/
mpi.c 160 SIGN(mp) = ZPOS;
193 SIGN(mp) = SIGN(from);
251 /* Copy the precision and sign from the original */
253 SIGN(to) = SIGN(from);
332 SIGN(mp) = ZPOS;
379 SIGN(mp) = NEG;
425 Compute the sum b = a + d, for a single digit d. Respects the sign of
439 if(SIGN(&tmp) == ZPOS)
    [all...]
mp_gf2m.c 337 SIGN(c) = ZPOS;
481 SIGN(r) = ZPOS;
mpi.h 233 #define MP_SIGN(MP) ((MP)->sign)
244 mp_sign sign; /* sign of this quantity */ member in struct:__anon2255
276 /* Sign manipulations */
374 #define SIGN(MP) MP_SIGN(MP)
  /onnv/onnv-gate/usr/src/tools/codesign/
codesign_server.pl 73 if (/^SIGN (\d+) (\S+) (\S+)/) {
74 sign($1, $2, $3);
102 # sign(size, cred, path)
104 # Sign an individual file.
106 sub sign { subroutine
133 # Sign input file using credential-specific script
134 $msg = `cd $cred_dir; ./sign $Tmpdir/reloc/$path`;
150 audit("SIGN $path $cred $hash");
157 # an OK SIGN response that includes the file size, followed by
171 print "OK SIGN $size $path\n"
    [all...]
signit.pl 97 # Sign each file with the specified credential
144 if ($str =~ /^OK SIGN (\d+)/) {
200 # sending a SIGN command with the given arguments, followed by
208 print SRV_IN "SIGN $size $args\n";
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
bigrat.pm 207 =head2 SIGN
209 The sign is either '+', '-', 'NaN', '+inf' or '-inf' and stored seperately.
211 A sign of 'NaN' is used to represent the result when input arguments are not
bigint.pm 79 my $sign = $$mis; $sign = '' if $sign eq '+';
87 return $sign . substr ($$miv,0,length($$miv)-$ec); # 1234.45E-2 = 12
93 return $sign.$$miv.$$mfv if $ec == 0; # 123.45E+2 => 12345
94 return $sign.$$miv.$$mfv.'E'.$ec; # 123.45e+3 => 12345e1
97 return $sign.$$miv.$mfv; # 123.45e+1 => 1234
288 accessor methods. E.g. looking at $x->{sign} is not a good idea since there
292 =head2 SIGN
294 The sign is either '+', '-', 'NaN', '+inf' or '-inf' and stored seperately
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-crypto/elfsign/
elfsign.c 57 #define SIGN "sign"
86 enum cmd_e cmd; /* sub command: sign | verify | request */
180 if (strcmp(scmd, SIGN) == 0) {
183 cryptodebug("cmd=sign opts=%s", opts);
220 /* not a normal sign operation, change the action */
384 "\telfsign sign [-a] [-v] [-e <elf_object>] -c <certificate_file>\n"
387 "\telfsign sign [-a] [-v] [-e <elf_object>] -c <certificate_file>\n"
608 es_error(gettext("Unable to sign %s using key from %s"),
750 * Find the certificate we need to sign the activation file with
    [all...]

Completed in 780 milliseconds