Searched refs:result (Results 1 - 25 of 1393) sorted by relevance

1234567891011>>

/haiku/src/system/libroot/posix/glibc/locale/
H A Delem-hash.h25 int32_t result = n; local
29 result <<= 3;
30 result += *str++;
33 return result;
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Ddrand48.c28 double result; local
30 (void) __erand48_r (__libc_drand48_data.__x, &__libc_drand48_data, &result);
32 return result;
H A Derand48.c29 double result; local
31 (void) __erand48_r (xsubi, &__libc_drand48_data, &result);
33 return result;
H A Djrand48.c29 long int result; local
31 (void) __jrand48_r (xsubi, &__libc_drand48_data, &result);
33 return result;
H A Dlrand48.c28 long int result; local
30 (void) __nrand48_r (__libc_drand48_data.__x, &__libc_drand48_data, &result);
32 return result;
H A Dmrand48.c28 long int result; local
30 (void) __jrand48_r (__libc_drand48_data.__x, &__libc_drand48_data, &result);
32 return result;
H A Dnrand48.c29 long int result; local
31 (void) __nrand48_r (xsubi, &__libc_drand48_data, &result);
33 return result;
H A Ddrand48_r.c25 drand48_r (buffer, result)
27 double *result;
29 return __erand48_r (buffer->__x, buffer, result);
H A Djrand48_r.c23 __jrand48_r (xsubi, buffer, result)
26 long int *result;
32 /* Store the result. */
33 *result = (int32_t) ((xsubi[2] << 16) | xsubi[1]);
H A Dlrand48_r.c23 lrand48_r (buffer, result)
25 long int *result;
31 return __nrand48_r (buffer->__x, buffer, result);
H A Dmrand48_r.c23 mrand48_r (buffer, result)
25 long int *result;
31 return __jrand48_r (buffer->__x, buffer, result);
/haiku/src/add-ons/translators/exr/
H A Dmain.cpp21 status_t result; local
22 result = LaunchTranslatorWindow(new EXRTranslator,
24 if (result != B_OK)
/haiku/src/add-ons/translators/icns/
H A Dmain.cpp17 status_t result; local
18 result = LaunchTranslatorWindow(new ICNSTranslator,
20 if (result != B_OK)
/haiku/src/add-ons/translators/psd/
H A DPSDTranslatorApp.cpp16 status_t result; local
17 result = LaunchTranslatorWindow(new PSDTranslator, "PSD Settings",
19 if (result != B_OK)
/haiku/src/tools/bfs_shell/
H A Dcommand_checkfs.cpp34 struct check_control result; local
35 memset(&result, 0, sizeof(result));
36 result.magic = BFS_IOCTL_CHECK_MAGIC;
37 result.flags = 0;
39 result.flags |= BFS_FIX_BITMAP_ERRORS | BFS_REMOVE_WRONG_TYPES
45 &result, sizeof(result));
52 uint32 previousPass = result.pass;
55 while (_kern_ioctl(rootDir, BFS_IOCTL_CHECK_NEXT_NODE, &result,
[all...]
/haiku/src/tests/system/kernel/
H A Dmlock_test.cpp16 int result = mlock(space + B_PAGE_SIZE, B_PAGE_SIZE * 7); local
18 assert(result == 0);
19 result = munlock(space + 2 * B_PAGE_SIZE, B_PAGE_SIZE * 5);
21 assert(result == 0);
22 result = mlock(space + 2 * B_PAGE_SIZE, B_PAGE_SIZE * 3);
24 assert(result == 0);
25 result = mlock(space, B_PAGE_SIZE * 9);
27 assert(result == 0);
28 result = munlock(space + 4 * B_PAGE_SIZE, B_PAGE_SIZE * 5);
30 assert(result
[all...]
/haiku/src/add-ons/translators/tga/
H A DTGAMain.cpp56 status_t result; local
57 result = LaunchTranslatorWindow(new TGATranslator,
59 if (result == B_OK) {
/haiku/src/add-ons/translators/tiff/
H A DTIFFMain.cpp60 status_t result; local
61 result = LaunchTranslatorWindow(new TIFFTranslator,
63 if (result == B_OK) {
/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Ds_clogl.c30 __complex__ long double result; local
37 __imag__ result = signbit (__real__ x) ? M_PIl : 0.0; local
38 __imag__ result = copysignl (__imag__ result, __imag__ x); local
40 __real__ result = -1.0 / fabsl (__real__ x); local
45 __real__ result = logl (hypotl (__real__ x, local
47 __imag__ result = atan2l (__imag__ x, __real__ x); local
51 __imag__ result = nanl (""); local
54 __real__ result = HUGE_VALL; local
56 __real__ result local
[all...]
H A Ds_clogf.c30 __complex__ float result; local
37 __imag__ result = signbit (__real__ x) ? M_PI : 0.0; local
38 __imag__ result = copysignf (__imag__ result, __imag__ x); local
40 __real__ result = -1.0 / fabsf (__real__ x); local
45 __real__ result = logf (hypotf (__real__ x, local
47 __imag__ result = atan2f (__imag__ x, __real__ x); local
51 __imag__ result = nanf (""); local
54 __real__ result = HUGE_VALF; local
56 __real__ result local
[all...]
H A Ds_clog10l.c30 __complex__ long double result; local
37 __imag__ result = signbit (__real__ x) ? M_PIl : 0.0; local
38 __imag__ result = copysignl (__imag__ result, __imag__ x); local
40 __real__ result = -1.0 / fabsl (__real__ x); local
45 __real__ result = log10l (hypotl (__real__ x, local
47 __imag__ result = M_LOG10El * atan2l (__imag__ x, __real__ x); local
51 __imag__ result = nanl (""); local
54 __real__ result = HUGE_VALL; local
56 __real__ result local
[all...]
H A Ds_clog10f.c30 __complex__ float result; local
37 __imag__ result = signbit (__real__ x) ? M_PI : 0.0; local
38 __imag__ result = copysignf (__imag__ result, __imag__ x); local
40 __real__ result = -1.0 / fabsf (__real__ x); local
45 __real__ result = log10f (hypotf (__real__ x, local
47 __imag__ result = M_LOG10E * atan2f (__imag__ x, __real__ x); local
51 __imag__ result = nanf (""); local
54 __real__ result = HUGE_VALF; local
56 __real__ result local
[all...]
/haiku/src/apps/haikudepot/server/
H A DAbstractSingleFileServerProcess.cpp39 status_t result = GetLocalPath(localPath); local
41 if (result != B_OK)
42 return result;
46 if (IsSuccess(result) && HasOption(SERVER_PROCESS_DROP_CACHE))
47 result = DeleteLocalFile(localPath);
52 if (IsSuccess(result))
53 result = StorageUtils::ExistsObject(localPath, &hasData, NULL, &size);
57 if (IsSuccess(result) && ShouldAttemptNetworkDownload(hasData)) {
59 result = DownloadToLocalFileAtomically(
64 if (!IsSuccess(result)) {
119 BString result; local
[all...]
/haiku/src/kits/shared/
H A DHSL.cpp13 hsl_color result; local
22 result.hue = result.saturation = result.lightness = (max + min) / 2;
26 result.hue = result.saturation = 0;
29 result.saturation
30 = (result.lightness > 0.5) ? (diff / (2 - max - min)) : (diff / (max + min));
33 result.hue = (g - b) / diff + (g < b ? 6 : 0);
35 result
49 rgb_color result; local
[all...]
/haiku/src/system/libroot/posix/glibc/libio/
H A Dfputwc.c36 int result; local
41 result = WEOF;
43 result = _IO_putwc_unlocked (wc, fp);
46 return result;

Completed in 81 milliseconds

1234567891011>>