Searched refs:result (Results 51 - 75 of 1393) sorted by relevance

1234567891011>>

/haiku/src/apps/webpositive/support/
H A DBaseURL.cpp14 BString result; local
15 result.SetTo(string.String() + baseURLStart, baseURLEnd - baseURLStart);
16 return result;
/haiku/src/system/libroot/posix/glibc/libio/
H A Dfeof.c35 int result; local
38 result = _IO_feof_unlocked (fp);
40 return result;
H A Dferror.c35 int result; local
38 result = _IO_ferror_unlocked (fp);
40 return result;
H A Dfputc.c36 int result; local
40 result = _IO_putc_unlocked (c, fp);
43 return result;
H A Dfseek.c37 int result; local
41 result = _IO_fseek (fp, offset, whence);
44 return result;
H A Dfseeko.c37 int result; local
41 result = _IO_fseek (fp, offset, whence);
44 return result;
H A Dfseeko64.c39 int result; local
43 result = _IO_fseek (fp, offset, whence);
46 return result;
H A Dgetchar.c36 int result; local
40 result = _IO_getc_unlocked (_IO_stdin);
43 return result;
H A Dgetwchar.c36 wint_t result; local
40 result = _IO_getwc_unlocked (_IO_stdin);
43 return result;
H A Diofputs_u.c38 int result = EOF; local
41 result = 1;
42 return result;
H A Diofputws_u.c38 int result = EOF; local
42 result = 1;
43 return result;
H A Dioungetc.c35 int result; local
41 result = INTUSE(_IO_sputbackc) (fp, (unsigned char) c);
44 return result;
H A Dpeekc.c37 int result; local
41 result = _IO_peekc_unlocked (fp);
44 return result;
H A Dputchar.c28 int result; local
32 result = _IO_putc_unlocked (c, _IO_stdout);
35 return result;
H A Dputwc.c27 wint_t result; local
31 result = _IO_putwc_unlocked (wc, fp);
34 return result;
H A Dputwchar.c26 wint_t result; local
30 result = _IO_putwc_unlocked (wc, _IO_stdout);
33 return result;
/haiku/src/tests/system/libroot/posix/
H A Dtst-wcstof.c11 int result = 0; local
21 result |= strcmp(buf, "81 = 81.000000") != 0;
23 return result;
/haiku/src/add-ons/translators/stxt/
H A DSTXTMain.cpp60 status_t result; local
61 result = LaunchTranslatorWindow(new STXTTranslator,
63 if (result == B_OK) {
/haiku/src/kits/storage/sniffer/
H A DPatternList.cpp49 bool result = false; local
53 result |= (*i)->Sniff(fRange, data, fCaseInsensitive);
55 return result;
65 ssize_t result = InitCheck(); local
69 if (result == B_OK) {
70 result = 0; // I realize it already *is* zero if it == B_OK, but just in case that changes...
76 if (bytes > result)
77 result = bytes;
79 result = bytes;
88 if (result >
[all...]
/haiku/src/add-ons/translators/sgi/
H A DSGIMain.cpp62 status_t result; local
63 result = LaunchTranslatorWindow(new SGITranslator,
65 if (result == B_OK) {
/haiku/src/add-ons/translators/png/
H A DPNGMain.cpp61 status_t result; local
62 result = LaunchTranslatorWindow(new PNGTranslator,
65 if (result == B_OK) {
/haiku/src/add-ons/translators/bmp/
H A DBMPMain.cpp61 status_t result; local
63 result = LaunchTranslatorWindow(new BMPTranslator,
65 if (result == B_OK) {
/haiku/src/system/boot/arch/arm/
H A Darch_cpu.cpp43 uint32 result = 0; local
50 asm volatile("MRC p15, 0, %[c1out], c0, c0, 0":[c1out] "=r" (result));
52 implementor = (result >> 24) & 0xff;
54 switch ((result >> 12) & 0xf) {
60 arch = (result & (1 << 23)) ? ARCH_ARM_v4T : ARCH_ARM_v3;
61 variant = (result >> 16) & 0x7f;
62 part = (result >> 4) & 0xfff;
63 revision = result & 0xf;
67 revision = result & 0xf;
68 part = (result >>
[all...]
/haiku/src/add-ons/disk_systems/bfs/
H A DBFSAddOn.cpp245 struct check_control result; local
246 memset(&result, 0, sizeof(result));
247 result.magic = BFS_IOCTL_CHECK_MAGIC;
248 result.flags = 0;
251 result.flags |= BFS_FIX_BITMAP_ERRORS | BFS_REMOVE_WRONG_TYPES
256 if (ioctl(fd.Get(), BFS_IOCTL_START_CHECKING, &result, sizeof(result)) < 0)
262 uint32 previousPass = result.pass;
265 while (ioctl(fd.Get(), BFS_IOCTL_CHECK_NEXT_NODE, &result,
[all...]
/haiku/src/add-ons/accelerants/3dfx/
H A Daccelerant.cpp32 status_t result = ioctl(gInfo.deviceFileDesc, TDFX_GET_SHARED_DATA, local
34 if (result != B_OK)
35 return result;
77 status_t result = InitCommon(fileDesc); local
78 if (result == B_OK) {
86 result = B_NOT_ALLOWED;
88 result = TDFX_Init(); // perform init related to current chip
89 if (result == B_OK) {
90 result = si.engineLock.Init("3DFX engine lock");
91 if (result
150 status_t result = InitCommon(gInfo.deviceFileDesc); local
[all...]

Completed in 122 milliseconds

1234567891011>>