Searched refs:res (Results 1 – 7 of 7) sorted by relevance
/iconv/ |
A D | tst-iconv4.c | 35 int res = 0; in do_test() local 39 res = 1; in do_test() 44 res = 1; in do_test() 49 res = 1; in do_test() 54 res = 1; in do_test() 59 res = 1; in do_test() 61 return res; in do_test()
|
A D | gconv_trans.c | 115 int res; in __gconv_transliterate() local 125 res = DL_CALL_FCT (fct, in __gconv_transliterate() 133 if (res == __GCONV_EMPTY_INPUT) in __gconv_transliterate() 137 res = __GCONV_OK; in __gconv_transliterate() 141 if (res != __GCONV_FULL_OUTPUT) in __gconv_transliterate() 144 return res; in __gconv_transliterate() 205 int res; in __gconv_transliterate() local 213 res = DL_CALL_FCT (fct, in __gconv_transliterate() 222 if (res == __GCONV_EMPTY_INPUT) in __gconv_transliterate() 227 res = __GCONV_OK; in __gconv_transliterate() [all …]
|
A D | iconv_open.c | 39 int res = __gconv_open (&conv_spec, &cd, 0); in iconv_open() local 43 if (__builtin_expect (res, __GCONV_OK) != __GCONV_OK) in iconv_open() 46 if (res == __GCONV_NOCONV || res == __GCONV_NODB) in iconv_open()
|
A D | gconv_open.c | 40 int res; in __gconv_open() local 73 res = __gconv_find_transform (tocode, fromcode, &steps, &nsteps, flags); in __gconv_open() 74 if (res == __GCONV_OK) in __gconv_open() 81 res = __GCONV_NOMEM; in __gconv_open() 130 res = __GCONV_NOMEM; in __gconv_open() 147 if (res != __GCONV_OK) in __gconv_open() 170 return res; in __gconv_open()
|
A D | gconv_cache.c | 330 int res; in __gconv_lookup_cache() local 332 res = find_module (strtab + extra->module[idx].dir_offset, in __gconv_lookup_cache() 335 if (__builtin_expect (res, __GCONV_OK) != __GCONV_OK) in __gconv_lookup_cache() 385 int res = find_module (strtab + from_module->todir_offset, in __gconv_lookup_cache() local 388 if (__builtin_expect (res, __GCONV_OK) != __GCONV_OK) in __gconv_lookup_cache() 392 return res; in __gconv_lookup_cache() 419 int res = find_module (strtab + to_module->fromdir_offset, in __gconv_lookup_cache() local 422 if (__builtin_expect (res, __GCONV_OK) != __GCONV_OK) in __gconv_lookup_cache() 428 return res; in __gconv_lookup_cache()
|
A D | iconv_prog.c | 171 int res; in main() local 184 res = __gconv_open (&conv_spec, &cd, 0); in main() 188 if (res != __GCONV_OK) in main()
|
A D | iconvconfig.c | 806 struct name **res; in name_to_module_idx() local 810 res = (struct name **) tfind (&fake_name, &names, name_compare); in name_to_module_idx() 811 if (res == NULL) in name_to_module_idx() 814 idx = (*res)->module_idx; in name_to_module_idx() 817 idx = (*res)->module_idx = nname_info++; in name_to_module_idx()
|
Completed in 17 milliseconds