HomeSort by: relevance | last modified time | path
    Searched defs:result (Results 1 - 25 of 4613) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/lgpl3/gmp/dist/mpz/
sizeinbase.c 39 size_t result; variable
40 MPN_SIZEINBASE (result, PTR(x), ABSIZ(x), base);
41 return result;
  /src/crypto/external/cpl/trousers/dist/src/tcs/
tcs_migration.c 32 TSS_RESULT result; local
35 if ((result = UnloadBlob_PUBKEY(offset, blob, NULL)))
36 return result;
44 if ((result = UnloadBlob_PUBKEY(offset, blob, &mkAuth->migrationKey)))
45 return result;
50 return result;
  /src/crypto/external/cpl/trousers/dist/src/tspi/rpc/tcstp/
rpc_caps.c 36 TSS_RESULT result; local
51 result = sendTCSDPacket(hte);
53 if (result == TSS_SUCCESS)
54 result = hte->comm.hdr.u.result;
56 if (result == TSS_SUCCESS) {
58 result = TSPERR(TSS_E_INTERNAL_ERROR);
65 result = TSPERR(TSS_E_OUTOFMEMORY);
70 result = TSPERR(TSS_E_INTERNAL_ERROR);
75 return result;
    [all...]
rpc_oper.c 29 TSS_RESULT result; local
40 result = sendTCSDPacket(hte);
42 if (result == TSS_SUCCESS)
43 result = hte->comm.hdr.u.result;
45 return result;
  /src/crypto/external/cpl/trousers/dist/src/tspi/
tspi_caps.c 38 TSS_RESULT result; local
62 result = internal_GetCap(tspContext, capArea,
77 result = RPC_GetCapability(tspContext, capArea, ulSubCapLength, rgbSubCap,
82 result = TSPERR(TSS_E_BAD_PARAMETER);
86 return result;
  /src/external/gpl2/groff/dist/src/libs/libgroff/
hypot.cpp 33 double result = hypot(x, y); local
37 if (isnan(result) && !isnan(x) && !isnan(y))
41 return result;
  /src/external/gpl3/gcc/dist/libgcc/config/lm32/
_mulsi3.c 32 USItype result; local
34 result = 0;
42 result += a;
47 return result;
  /src/external/gpl3/gcc.old/dist/libgcc/config/lm32/
_mulsi3.c 32 USItype result; local
34 result = 0;
42 result += a;
47 return result;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
so-impl-ld.c 15 int result; local
18 result = solib_main (100);
21 result = solib_main (result);
signed-builtin-types.c 23 int result = foo (); local
24 return result;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
ppc-fp.c 21 double result; local
24 : "=f" (result)
32 : "=f" (result)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
signed-builtin-types.c 23 int result = foo (); local
24 return result;
so-impl-ld.c 15 int result; local
18 result = solib_main (100);
21 result = solib_main (result);
  /src/external/ibm-public/postfix/dist/src/util/
basename.c 15 /* \fIpath\fR and returns a pointer to the result.
42 char *result; local
44 if ((result = strrchr(path, '/')) == 0)
45 result = (char *) path;
47 result += 1;
48 return (result);
  /src/external/lgpl3/gmp/dist/mpn/generic/
sizeinbase.c 46 size_t result; local
47 MPN_SIZEINBASE (result, xp, xsize, base);
48 return result;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
ppc-fp.c 21 double result; local
24 : "=f" (result)
32 : "=f" (result)
  /src/sys/arch/hppa/spmath/
setovfl.c 54 sgl_floating_point result; local
56 /* set result to infinity or largest number */
61 Sgl_setlargestnegative(result);
63 Sgl_setinfinitypositive(result);
68 Sgl_setlargestpositive(result);
70 Sgl_setinfinitynegative(result);
74 Sgl_setinfinity(result,sign);
78 Sgl_setlargest(result,sign);
82 Sgl_setinfinity(result,sign);
83 return(result);
88 dbl_floating_point result; local
    [all...]
  /src/sys/arch/ia64/stand/common/
devopen.c 41 int result; local
43 if ((result = archsw.arch_getdev((void *)&dev, fname, (const char **) file)) == 0) { /* get the device */
46 if ((result = dev->d_dev->dv_open(f, dev)) == 0) { /* try to open it */
53 return(result);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
ashldi3.c 26 dwords result; local
30 result.s.low = 0;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
40 return result.all;
ashlti3.c 28 twords result; local
32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
42 return result.all;
ashrdi3.c 26 dwords result; local
30 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
41 return result.all;
ashrti3.c 28 twords result; local
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
43 return result.all;
lshrdi3.c 26 udwords result; local
30 result.s.high = 0;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
40 return result.all;
lshrti3.c 28 utwords result; local
32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
42 return result.all;
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
divmodsi4_test.c 26 si_int result = __divmodsi4(a, b, &rem); local
27 if (result != expected_result) {
29 a, b, result, expected_result);

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 91011>>