Searched refs:result (Results 76 - 100 of 3999) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/unistdio/
H A Dtest-ulc-asnprintf1.h30 char *result = my_asnprintf (NULL, &length, "%d", 12345); local
31 ASSERT (result != NULL);
32 ASSERT (strcmp (result, "12345") == 0);
34 free (result);
40 char *result; local
44 result = my_asnprintf (buf, &length, "%d", 12345);
45 ASSERT (result != NULL);
46 ASSERT (strcmp (result, "12345") == 0);
49 ASSERT (result != buf);
51 if (result !
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uniconv/
H A Du8-strconv-to-enc.c37 char *result; local
51 result = (char *) malloc (length);
52 if (result == NULL)
57 memcpy (result, (const char *) string, length);
58 return result;
62 result = NULL;
67 NULL, &result, &length) < 0)
69 /* Verify the result has exactly one NUL byte, at the end. */
70 if (!(length > 0 && result[length-1] == '\0'
71 && strlen (result)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/uniconv/
H A Dtest-u16-strconv-to-enc.c51 char *result = u16_strconv_to_encoding (input, "ISO-8859-1", handler); local
52 ASSERT (result != NULL);
53 ASSERT (strcmp (result, expected) == 0);
54 free (result);
66 char *result = u16_strconv_to_encoding (input, "ISO-8859-1", handler); local
70 ASSERT (result == NULL && errno == EILSEQ);
76 ASSERT (result != NULL);
77 ASSERT (strcmp (result, expected) == 0
78 || strcmp (result, expected_translit) == 0);
79 free (result);
[all...]
H A Dtest-u8-strconv-to-enc.c46 char *result = u8_strconv_to_encoding (input, "ISO-8859-1", handler); local
47 ASSERT (result != NULL);
48 ASSERT (strcmp (result, expected) == 0);
49 free (result);
57 char *result = u8_strconv_to_encoding (input, "ISO-8859-1", handler); local
61 ASSERT (result == NULL && errno == EILSEQ);
67 ASSERT (result != NULL);
68 ASSERT (strcmp (result, expected) == 0
69 || strcmp (result, expected_translit) == 0);
70 free (result);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-tests/
H A Dtest-vasnprintf.c60 char *result = my_asnprintf (NULL, &length, "%d", 12345); local
61 ASSERT (result != NULL);
62 ASSERT (strcmp (result, "12345") == 0);
64 free (result);
70 char *result; local
74 result = my_asnprintf (buf, &length, "%d", 12345);
75 ASSERT (result != NULL);
76 ASSERT (strcmp (result, "12345") == 0);
79 ASSERT (result != buf);
81 if (result !
95 char *result = asnprintf (NULL, &length, "%d", 12345); local
105 char *result; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/math-emu/
H A Dsfadd.c55 register unsigned int left, right, result, extent; local
88 Sgl_makequietnan(result);
89 *dstptr = result;
198 /* Left is not a zero and must be the result. Trapped
221 /* Both operands are denormalized. The result must be exact
226 Sgl_subtract(left,/*minus*/right,/*into*/result);
227 if(Sgl_iszero_mantissa(result))
231 Sgl_setone_sign(result);
235 Sgl_setzero_sign(result);
237 *dstptr = result;
[all...]
H A Dsfsub.c55 register unsigned int left, right, result, extent; local
86 Sgl_makequietnan(result);
87 *dstptr = result;
199 /* Left is not a zero and must be the result. Trapped
223 /* Both operands are denormalized. The result must be exact
228 Sgl_subtract(left,/*minus*/right,/*into*/result);
229 if(Sgl_iszero_mantissa(result))
233 Sgl_setone_sign(result);
237 Sgl_setzero_sign(result);
239 *dstptr = result;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/webserver/default/
H A Damuleweb-main-shared.php232 $result = $size . " bytes"; variable
234 $result = ($size / 1024.0) . "KB"; variable
236 $result = ($size / 1048576.0) . "MB"; variable
238 $result = ($size / 1073741824.0) . "GB"; variable
240 return $result;
258 $result = $prionames[$file->prio]; variable
260 $result = $result . "(auto)"; variable
262 return $result;
283 case "size": $result variable
284 case "name": $result = $a->name > $b->name; break; variable
285 case "xfer": $result = $a->xfer > $b->xfer; break; variable
286 case "xfer_all": $result = $a->xfer_all > $b->xfer_all; break; variable
287 case "acc": $result = $a->accept > $b->accept; break; variable
288 case "acc_all": $result = $a->accept_all > $b->accept_all; break; variable
289 case "req": $result = $a->req > $b->req; break; variable
290 case "req_all": $result = $a->req_all > $b->req_all; break; variable
291 case "prio": $result = PrioSort($a) < PrioSort($b); break; variable
295 $result = !$result; variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/sio/
H A DSConnectByName.c9 int result; local
17 if ((result = AddrStrToAddr(addrStr, &remoteAddr, -1)) == 0) {
18 result = SConnect(sfd, &remoteAddr, tlen);
20 return (result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dmalloc.c42 void *result; local
49 result = malloc (n);
52 if (result == NULL)
56 return result;
H A Dstrerror.c36 char *result = strerror (n); local
38 if (result == NULL || result[0] == '\0')
46 return result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dstrerror.c36 char *result = strerror (n); local
38 if (result == NULL || result[0] == '\0')
46 return result;
H A Dmalloc.c42 void *result; local
49 result = malloc (n);
52 if (result == NULL)
56 return result;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/shared/
H A Dsyscall.h10 extern void record_syscall_end(int index, long result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/unistr/
H A Dtest-cpy-alloc.h29 UNIT *result = U_CPY_ALLOC (src, n); local
32 ASSERT (result != NULL);
34 ASSERT (result[i] == src[i]);
36 free (result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/glthread/
H A Dthreadlib.c44 static int result; /* 1: linked with -lpthread, 0: only with libc */ local
52 result = 0;
59 result = 1;
63 return result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dmalloc.c42 void *result; local
49 result = malloc (n);
52 if (result == NULL)
56 return result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistdio/
H A Du-vasprintf.h21 DCHAR_T *result = VASNPRINTF (NULL, &length, format, args); local
22 if (result == NULL)
27 free (result);
32 *resultp = result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dmalloc.c42 void *result; local
49 result = malloc (n);
52 if (result == NULL)
56 return result;
H A Dstrerror.c36 char *result = strerror (n); local
38 if (result == NULL || result[0] == '\0')
46 return result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/ssl/
H A Dssl.h46 int ns__add(xsd__double a, xsd__double b, xsd__double *result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/wsse/
H A Dwssedemo.h147 double *result
161 double *result ///< response parameter
192 double *result
206 double *result ///< response parameter
237 double *result
251 double *result ///< response parameter
282 double *result
296 double *result ///< response parameter
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/ssl/
H A Dssl.h46 int ns__add(xsd__double a, xsd__double b, xsd__double *result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/wsse/
H A Dwssedemo.h147 double *result
161 double *result ///< response parameter
192 double *result
206 double *result ///< response parameter
237 double *result
251 double *result ///< response parameter
282 double *result
296 double *result ///< response parameter
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/src/
H A Duserfile.c28 * \param result The pointer to store the resultant file name
38 int snd_user_file(const char *file, char **result) argument
43 assert(file && result);
56 *result = strdup(we.we_wordv[0]);
57 if (*result == NULL)
65 int snd_user_file(const char *file, char **result) argument
67 *result = strdup(file);
68 if (! *result)

Completed in 192 milliseconds

1234567891011>>