/iconv/ |
A D | gconv_cache.c | 197 result->__fct = result->__shlib_handle->fct; in find_module() 198 result->__init_fct = result->__shlib_handle->init_fct; in find_module() 199 result->__end_fct = result->__shlib_handle->end_fct; in find_module() 309 *handle = result = in __gconv_lookup_cache() 366 if (result == NULL) in __gconv_lookup_cache() 369 *handle = result; in __gconv_lookup_cache() 387 &result[0]); in __gconv_lookup_cache() 391 free (result); in __gconv_lookup_cache() 399 &result[0]); in __gconv_lookup_cache() 421 &result[idx]); in __gconv_lookup_cache() [all …]
|
A D | gconv_open.c | 38 __gconv_t result = NULL; in __gconv_open() local 80 if (result == NULL) in __gconv_open() 85 result->__steps = steps; in __gconv_open() 86 result->__nsteps = nsteps; in __gconv_open() 89 memset (result->__data, '\0', in __gconv_open() 109 result->__data[cnt].__statep = &result->__data[cnt].__state; in __gconv_open() 134 result->__data[cnt].__outbufend = in __gconv_open() 154 if (result != NULL) in __gconv_open() 159 free (result); in __gconv_open() 160 result = NULL; in __gconv_open() [all …]
|
A D | gconv_db.c | 110 int result; in derivation_compare() local 113 if (result == 0) in derivation_compare() 115 return result; in derivation_compare() 345 free (result); in gen_steps() 419 return result; in increment_counter() 434 int result; in find_derivation() local 685 return result; in find_derivation() 704 int result; in __gconv_compare_alias() local 713 return result; in __gconv_compare_alias() 724 int result; in __gconv_find_transform() local [all …]
|
A D | tst-iconv2.c | 39 int result = 0; in do_test() local 61 result = 1; in do_test() 68 result = 1; in do_test() 74 result = 1; in do_test() 80 result = 1; in do_test() 86 result = 1; in do_test() 92 result = 1; in do_test() 97 return result; in do_test()
|
A D | tst-iconv6.c | 37 int result = 0; in do_test() local 67 result = 1; in do_test() 74 result = 1; in do_test() 81 result = 1; in do_test() 88 result = 1; in do_test() 96 result = 1; in do_test() 103 result = 1; in do_test() 109 result = 1; in do_test() 114 return result; in do_test()
|
A D | tst-iconv_prog.sh | 248 echo -n "$result: from: \"$from\", to: \"$to\"," 251 if [ "$result" != "OK" ]; then 268 result="PASS" 270 result="FAIL" 272 echo -n "$result: from: \"$from\", to: \"$to\"," 275 if [ "$result" != "PASS" ]; then
|
A D | gconv_simple.c | 84 int result; in internal_ucs4_loop() local 112 return result; in internal_ucs4_loop() 129 int result; in internal_ucs4_loop_unaligned() local 161 return result; in internal_ucs4_loop_unaligned() 241 int result; in ucs4_internal_loop() local 290 return result; in ucs4_internal_loop() 307 int result; in ucs4_internal_loop_unaligned() local 451 int result; in internal_ucs4le_loop() local 497 int result; in internal_ucs4le_loop_unaligned() local 611 int result; in ucs4le_internal_loop() local [all …]
|
A D | gconv.c | 35 int result; in __gconv() local 57 result = DL_CALL_FCT (fct, in __gconv() 64 if (result == __GCONV_OK) in __gconv() 77 result = DL_CALL_FCT (fct, in __gconv() 81 while (result == __GCONV_EMPTY_INPUT && last_start != *inbuf in __gconv() 88 return result; in __gconv()
|
A D | iconv.c | 36 int result; in iconv() local 41 result = __gconv (gcd, NULL, NULL, NULL, NULL, &irreversible); in iconv() 43 result = __gconv (gcd, NULL, NULL, (unsigned char **) outbuf, in iconv() 51 result = __gconv (gcd, (const unsigned char **) inbuf, in iconv() 62 switch (__builtin_expect (result, __GCONV_OK)) in iconv()
|
A D | loop.c | 196 result = __GCONV_ILLEGAL_INPUT; \ 215 result = __GCONV_ILLEGAL_INPUT; \ 228 result = __gconv_transliterate \ 300 int result = __GCONV_EMPTY_INPUT; in FCTNAME() local 318 result = __GCONV_INCOMPLETE_INPUT; in FCTNAME() 327 result = __GCONV_FULL_OUTPUT; in FCTNAME() 343 return result; in FCTNAME() 380 int result = __GCONV_OK; in SINGLE() local 469 result = __GCONV_OK; in SINGLE() 478 else if (result == __GCONV_INCOMPLETE_INPUT) in SINGLE() [all …]
|
A D | gconv_conf.c | 358 struct path_elem *result; in __gconv_get_path() local 361 result = __gconv_path_elem; in __gconv_get_path() 362 assert (result == NULL); in __gconv_get_path() 412 result = malloc ((nelems + 1) in __gconv_get_path() 416 if (result != NULL) in __gconv_get_path() 418 char *strspace = (char *) &result[nelems + 1]; in __gconv_get_path() 427 result[n].name = strspace; in __gconv_get_path() 438 result[n].len = strspace - result[n].name; in __gconv_get_path() 440 __gconv_max_path_elem_len = result[n].len; in __gconv_get_path() 447 result[n].name = NULL; in __gconv_get_path() [all …]
|
A D | tst-iconv3.c | 21 int result = 0; in do_test() local 46 result = 1; in do_test() 53 return result; in do_test()
|
A D | gconv_int.h | 119 char *result; \ 128 tmp = result = __alloca (cp - (str) + 3 + suffix_len); \ 143 result; \ 205 int *result)
|
A D | iconv_charmap.c | 284 struct charseq *result = NULL; in convert_charseq() local 304 result = xmalloc (sizeof (struct charseq) + outlen); in convert_charseq() 305 result->name = seq->name; in convert_charseq() 306 result->ucs4 = seq->ucs4; in convert_charseq() 307 result->nbytes = outlen; in convert_charseq() 308 memcpy (result->bytes, outbuf, outlen); in convert_charseq() 315 return result; in convert_charseq()
|
A D | skeleton.c | 458 int result; in FUNCTION_NAME() local 460 result = DL_CALL_FCT (fct, (next_step, next_data, in FUNCTION_NAME() 465 if (result != __GCONV_EMPTY_INPUT) in FUNCTION_NAME() 479 status = result; in FUNCTION_NAME() 673 int result; in FUNCTION_NAME() local 675 result = DL_CALL_FCT (fct, (next_step, next_data, &outerr, in FUNCTION_NAME() 679 if (result != __GCONV_EMPTY_INPUT) in FUNCTION_NAME() 758 status = result; in FUNCTION_NAME()
|
A D | iconvconfig.c | 509 int result; in module_compare() local 511 result = strcmp (m1->fromname, m2->fromname); in module_compare() 512 if (result == 0) in module_compare() 513 result = strcmp (m1->toname, m2->toname); in module_compare() 515 return result; in module_compare()
|