HomeSort by: relevance | last modified time | path
    Searched refs:resultp (Results 1 - 25 of 87) sorted by relevancy

1 2 3 4

  /src/external/gpl2/gettext/dist/gettext-runtime/libasprintf/
asprintf.c 27 asprintf (char **resultp, const char *format, ...)
33 result = vasprintf (resultp, format, args);
vasprintf.c 36 vasprintf (char **resultp, const char *format, va_list args)
50 *resultp = result;
  /src/external/gpl2/xcvs/dist/lib/
asprintf.c 31 asprintf (char **resultp, const char *format, ...)
37 result = vasprintf (resultp, format, args);
vasprintf.c 33 vasprintf (char **resultp, const char *format, va_list args)
40 *resultp = result;
  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
xstriconv.c 34 char **resultp, size_t *lengthp)
36 int retval = mem_cd_iconv (src, srclen, cd, resultp, lengthp);
striconv.h 38 *RESULTP should initially contain NULL or a malloced memory block.
39 May change the size of the allocated memory block in *RESULTP, storing
40 its new address in *RESULTP and its new length in *LENGTHP.
42 If successful, the resulting string is stored in *RESULTP and its length
45 char **resultp, size_t *lengthp);
xstriconv.h 38 *RESULTP should initially contain NULL or a malloced memory block.
39 May change the size of the allocated memory block in *RESULTP, storing
40 its new address in *RESULTP and its new length in *LENGTHP.
43 If successful, the resulting string is stored in *RESULTP and its length
46 char **resultp, size_t *lengthp);
striconv.c 46 char **resultp, size_t *lengthp)
117 result = (*resultp != NULL ? realloc (*resultp, length) : malloc (length));
123 *resultp = result;
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
xstriconv.c 34 char **resultp, size_t *lengthp)
36 int retval = mem_cd_iconv (src, srclen, cd, resultp, lengthp);
striconv.h 38 *RESULTP should initially contain NULL or a malloced memory block.
39 May change the size of the allocated memory block in *RESULTP, storing
40 its new address in *RESULTP and its new length in *LENGTHP.
42 If successful, the resulting string is stored in *RESULTP and its length
45 char **resultp, size_t *lengthp);
xstriconv.h 38 *RESULTP should initially contain NULL or a malloced memory block.
39 May change the size of the allocated memory block in *RESULTP, storing
40 its new address in *RESULTP and its new length in *LENGTHP.
43 If successful, the resulting string is stored in *RESULTP and its length
46 char **resultp, size_t *lengthp);
javacomp.c 795 struct result_t *resultp; local
797 resultp = &result_cache[source_version_index (source_version)]
799 if (!resultp->tested)
891 resultp->source_option = true;
898 resultp->usable = true;
979 resultp->source_option = true;
986 resultp->target_option = true;
987 resultp->usable = true;
1009 resultp->source_option = true;
1010 resultp->target_option = true
1316 struct result_t *resultp; local
    [all...]
striconv.c 46 char **resultp, size_t *lengthp)
117 result = (*resultp != NULL ? realloc (*resultp, length) : malloc (length));
123 *resultp = result;
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
xstriconv.c 34 char **resultp, size_t *lengthp)
36 int retval = mem_cd_iconv (src, srclen, cd, resultp, lengthp);
striconv.h 38 *RESULTP should initially contain NULL or a malloced memory block.
39 May change the size of the allocated memory block in *RESULTP, storing
40 its new address in *RESULTP and its new length in *LENGTHP.
42 If successful, the resulting string is stored in *RESULTP and its length
45 char **resultp, size_t *lengthp);
xstriconv.h 38 *RESULTP should initially contain NULL or a malloced memory block.
39 May change the size of the allocated memory block in *RESULTP, storing
40 its new address in *RESULTP and its new length in *LENGTHP.
43 If successful, the resulting string is stored in *RESULTP and its length
46 char **resultp, size_t *lengthp);
striconv.c 46 char **resultp, size_t *lengthp)
117 result = (*resultp != NULL ? realloc (*resultp, length) : malloc (length));
123 *resultp = result;
  /src/external/mpl/bind/dist/tests/ns/
query_test.c 681 hook_async_common(void *arg, void *data, isc_result_t *resultp,
709 INSIST(*resultp == DNS_R_NXDOMAIN);
715 *resultp = ISC_R_UNSET;
720 hook_async_query_setup(void *arg, void *data, isc_result_t *resultp) {
721 return hook_async_common(arg, data, resultp, NS_QUERY_SETUP);
725 hook_async_query_start_begin(void *arg, void *data, isc_result_t *resultp) {
726 return hook_async_common(arg, data, resultp, NS_QUERY_START_BEGIN);
730 hook_async_query_lookup_begin(void *arg, void *data, isc_result_t *resultp) {
731 return hook_async_common(arg, data, resultp, NS_QUERY_LOOKUP_BEGIN);
735 hook_async_query_resume_begin(void *arg, void *data, isc_result_t *resultp) {
    [all...]
  /src/sys/arch/hppa/spmath/
cnv_float.h 345 #define Dbl_return_overflow(srcp1, srcp2, resultp) \
350 *resultp = 0x7fffffff; \
352 *resultp = 0x80000000; \
363 #define Dbl_return_overflow_dbl(srcp1, srcp2, resultp) \
368 Dint_copytoptr(0x7fffffff,0xffffffff,resultp); \
370 Dint_copytoptr(0x80000000,0x00000000,resultp); \
382 #define Sgl_return_overflow(src, resultp) \
387 *resultp = 0x7fffffff; \
389 *resultp = 0x80000000; \
400 #define Sgl_return_overflow_dbl(src, resultp) \
    [all...]
  /src/external/bsd/openldap/dist/contrib/slapd-modules/rbac/
util.c 445 struct tm result, *resultp; local
456 resultp = gmtime( &now );
458 resultp = gmtime_r( &now, &result );
460 if ( !resultp ) goto done;
477 int timeofday = ( resultp->tm_hour * 60 + resultp->tm_min ) * 60 +
478 resultp->tm_sec;
487 rc = constraint_day_of_week( cp, resultp->tm_wday );
  /src/external/mpl/bind/dist/lib/isc/
thread.c 148 isc_thread_join(isc_thread_t thread, void **resultp) {
149 int ret = pthread_join(thread, resultp);
  /src/external/gpl2/gettext/dist/gettext-runtime/intl/
printf.c 251 libintl_vasprintf (char **resultp, const char *format, va_list args)
263 *resultp = result;
269 libintl_asprintf (char **resultp, const char *format, ...)
275 retval = libintl_vasprintf (resultp, format, args);
  /src/external/gpl2/texinfo/dist/intl/
printf.c 223 libintl_vasprintf (char **resultp, const char *format, va_list args)
229 *resultp = result;
235 libintl_asprintf (char **resultp, const char *format, ...)
241 retval = libintl_vasprintf (resultp, format, args);
  /src/external/gpl3/gcc/dist/gcc/fortran/
arith.cc 445 gfc_arith_not (gfc_expr *op1, gfc_expr **resultp)
454 *resultp = result;
461 gfc_arith_and (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
471 *resultp = result;
478 gfc_arith_or (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
488 *resultp = result;
495 gfc_arith_eqv (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
505 *resultp = result;
512 gfc_arith_neqv (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
522 *resultp = result
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
arith.cc 418 gfc_arith_not (gfc_expr *op1, gfc_expr **resultp)
424 *resultp = result;
431 gfc_arith_and (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
438 *resultp = result;
445 gfc_arith_or (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
452 *resultp = result;
459 gfc_arith_eqv (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
466 *resultp = result;
473 gfc_arith_neqv (gfc_expr *op1, gfc_expr *op2, gfc_expr **resultp)
480 *resultp = result
    [all...]

Completed in 49 milliseconds

1 2 3 4