Searched refs:result (Results 176 - 200 of 3999) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dasprintf.c34 int result; local
37 result = vasprintf (resultp, format, args);
39 return result;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/aoa/codecs/
H A Dtas-basstreble.h129 u8 result = tas3004_treble_table[idx]; local
132 result += tas3004_bass_diff_to_treble[idx-50];
133 return result;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dparser.h29 int match_int(substring_t *, int *result);
30 int match_octal(substring_t *, int *result);
31 int match_hex(substring_t *, int *result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/unicase/
H A Dtest-u16-is-casefolded.c36 bool result; local
38 ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
39 ASSERT (result == false);
H A Dtest-u32-is-casefolded.c36 bool result; local
38 ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
39 ASSERT (result == false);
H A Dtest-u8-is-casefolded.c36 bool result; local
38 ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
39 ASSERT (result == false);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uniconv/
H A Du8-conv-from-enc.c42 uint8_t *result; local
69 result = resultbuf;
72 result = (uint8_t *) malloc (srclen > 0 ? srclen : 1);
73 if (result == NULL)
80 memcpy ((char *) result, src, srclen);
82 return result;
86 char *result = (char *) resultbuf; local
90 offsets, &result, &length) < 0)
93 if (result == NULL) /* when (resultbuf == NULL && length == 0) */
95 result
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistdio/
H A Du-asnprintf.h22 DCHAR_T *result; local
25 result = VASNPRINTF (resultbuf, lengthp, format, args);
27 return result;
H A Du-snprintf.h22 int result; local
25 result = VSNPRINTF (buf, size, format, args);
27 return result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dasnprintf.c29 char *result; local
32 result = vasnprintf (resultbuf, lengthp, format, args);
34 return result;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/
H A Dipg6 local result
10 result=`cat /proc/net/pg | fgrep "Result: OK:"`
11 if [ "$result" = "" ]; then
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/lib/
H A Dchecksum.c44 unsigned int result = 0; local
50 result = be16_to_cpu(*buff);
57 result += *(unsigned short *) buff;
70 addc(result, r1);
71 addc(result, r2);
72 addc(result, r3);
73 addc(result, r4);
81 addc(result, w);
83 result = (result
107 unsigned int result = do_csum(buff, len); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/math-emu/
H A Dsfrem.c54 register unsigned int opnd1, opnd2, result; local
70 Sgl_makequietnan(result);
71 *dstptr = result;
141 Sgl_makequietnan(result);
142 *dstptr = result;
147 * get sign of result
149 result = opnd1;
176 /* find result exponent and divide step loop count */
191 Sgl_all(result) = ~Sgl_all(result); /* se
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Dc_exists.c21 int result; local
35 cip->errNo = result = kErrSTATwithFileNotAvailable;
36 return (result);
42 result = kErrMallocFailed;
45 return (result);
59 result = RCmd(cip, rp, "STAT %s", "NoSuchFile");
60 if ((result == 2) && ((rp->msg.nLines >= 3) || (rp->msg.nLines == 1))) {
80 result = kNoErr;
83 cip->errNo = result = kErrSTATwithFileNotAvailable;
85 return (result);
222 int result; local
384 int result; local
[all...]
H A Dc_type.c16 int result; local
46 result = FTPCmd(cip, "TYPE %c", type);
47 if (result != 2) {
48 result = kErrTYPEFailed;
50 return (result);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-parsing-location.c45 CRParsingLocation * result = NULL ; local
47 result = g_try_malloc (sizeof (CRParsingLocation)) ;
48 if (!result) {
52 cr_parsing_location_init (result) ;
53 return result ;
106 GString *result = NULL ; local
114 result =g_string_new (NULL) ;
115 if (!result)
118 g_string_append_printf (result, "line:%d ",
122 g_string_append_printf (result, "colum
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-parsing-location.c45 CRParsingLocation * result = NULL ; local
47 result = g_try_malloc (sizeof (CRParsingLocation)) ;
48 if (!result) {
52 cr_parsing_location_init (result) ;
53 return result ;
106 GString *result = NULL ; local
114 result =g_string_new (NULL) ;
115 if (!result)
118 g_string_append_printf (result, "line:%d ",
122 g_string_append_printf (result, "colum
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/utils/
H A Dnet_rpc_service.c35 WERROR result = WERR_GENERAL_FAILURE; local
39 result = rpccli_svcctl_open_service(pipe_hnd, mem_ctx, hSCM, &hService,
42 if ( !W_ERROR_IS_OK(result) ) {
43 d_fprintf(stderr, "Failed to open service. [%s]\n", dos_errstr(result));
44 return result;
47 result = rpccli_svcctl_query_status(pipe_hnd, mem_ctx, &hService, &service_status );
48 if ( W_ERROR_IS_OK(result) ) {
54 return result;
69 WERROR result = WERR_GENERAL_FAILURE; local
76 result
103 WERROR result = WERR_GENERAL_FAILURE; local
152 WERROR result = WERR_GENERAL_FAILURE; local
205 WERROR result = WERR_GENERAL_FAILURE; local
307 WERROR result = WERR_GENERAL_FAILURE; local
345 WERROR result = WERR_GENERAL_FAILURE; local
383 WERROR result = WERR_GENERAL_FAILURE; local
421 WERROR result = WERR_GENERAL_FAILURE; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/testsuite/smbd/
H A Dsec_ctx_stack.c27 BOOL result; local
36 result = push_sec_ctx();
39 if (!result) {
57 result = pop_sec_ctx();
59 if (!result) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Drealloc.c57 void *result; local
76 result = malloc (n);
79 result = realloc (p, n);
82 if (result == NULL)
86 return result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/lib/
H A Drealloc.c58 void *result; local
77 result = malloc (n);
80 result = realloc (p, n);
83 if (result == NULL)
87 return result;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dtest.c72 const char *result; local
76 result = all_tests();
78 if (result != NULL)
80 puts (result);
89 return result != 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/wimax/
H A Dop-rfkill.c35 int result; local
44 result = wimax_dev_is_ready(wimax_dev);
45 if (result < 0)
56 result = rfkill_set_hw_state(wimax_dev->rfkill,
64 wimax_dev, state, result);
91 int result; local
100 result = wimax_dev_is_ready(wimax_dev);
101 if (result < 0)
117 wimax_dev, state, result);
148 int result local
190 int result; local
242 int result; local
289 int result; local
366 int result, ifindex; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/integrity/ima/
H A Dima_api.c42 int result; local
49 result = ima_calc_template_hash(entry->template_len,
52 if (result < 0) {
55 audit_cause, result, 0);
56 return result;
59 result = ima_add_template_entry(entry, violation, op, inode);
60 return result;
75 int result; local
82 result = -ENOMEM;
87 result
138 int result = -EEXIST; local
171 int result = -ENOMEM; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/uniconv/
H A Dtest-u16-strconv-from-enc.c50 uint16_t *result = u16_strconv_from_encoding (input, "ISO-8859-1", handler); local
51 ASSERT (result != NULL);
52 ASSERT (u16_strcmp (result, expected) == 0);
53 free (result);
66 uint16_t *result = u16_strconv_from_encoding (input, "ISO-8859-2", handler); local
67 ASSERT (result != NULL);
68 ASSERT (u16_strcmp (result, expected) == 0);
69 free (result);
83 uint16_t *result = u16_strconv_from_encoding (input, "autodetect_jp", handler); local
84 ASSERT (result !
96 uint16_t *result = u16_strconv_from_encoding (input, "autodetect_jp", handler); local
109 uint16_t *result = u16_strconv_from_encoding (input, "autodetect_jp", handler); local
[all...]

Completed in 229 milliseconds

1234567891011>>