Lines Matching defs:result
31 size_t result = strxfrm(desp, str, want + 1);
32 if (result != want) {
33 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want);
50 size_t result = strxfrm(desp, str, want);
51 if (result != want) {
52 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want);
69 size_t result = strxfrm(desp, str, want);
70 if (result != strlen(str)) {
71 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, strlen(str));
88 size_t result = strxfrm(desp, str, want + 1);
89 if (result != want) {
90 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want);
108 size_t result = strxfrm(desp, str, want + 1);
109 if (result != want) {
110 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want);
128 size_t result = strxfrm(desp, str, want + 1);
129 if (result != want) {
130 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want);
148 size_t result = strxfrm(desp, str, move);
150 if (result != want) {
151 t_error("%s strxfrm get size is %d is not want %d\n", __func__, result, want);