Lines Matching refs:p
363 char *p, old[18], *endofalafim; in heb_number_to_chars() local
365 p = endofalafim = old; in heb_number_to_chars()
377 *p = alef_bet[n / 1000]; in heb_number_to_chars()
378 p++; in heb_number_to_chars()
381 *p = '\''; in heb_number_to_chars()
382 p++; in heb_number_to_chars()
386 strcpy(p, " \xE0\xEC\xF4\xE9\xED "); in heb_number_to_chars()
387 p += 7; in heb_number_to_chars()
390 endofalafim = p; in heb_number_to_chars()
396 *p = alef_bet[22]; in heb_number_to_chars()
397 p++; in heb_number_to_chars()
403 *p = alef_bet[18 + n / 100]; in heb_number_to_chars()
404 p++; in heb_number_to_chars()
410 *p = alef_bet[9]; in heb_number_to_chars()
411 p++; in heb_number_to_chars()
412 *p = alef_bet[n - 9]; in heb_number_to_chars()
413 p++; in heb_number_to_chars()
417 *p = alef_bet[9 + n / 10]; in heb_number_to_chars()
418 p++; in heb_number_to_chars()
424 *p = alef_bet[n]; in heb_number_to_chars()
425 p++; in heb_number_to_chars()
430 switch (p - endofalafim) { in heb_number_to_chars()
434 *p = '\''; in heb_number_to_chars()
435 p++; in heb_number_to_chars()
438 *(p) = *(p - 1); in heb_number_to_chars()
439 *(p - 1) = '"'; in heb_number_to_chars()
440 p++; in heb_number_to_chars()
444 *p = '\0'; in heb_number_to_chars()
445 *ret = estrndup(old, (p - old) + 1); in heb_number_to_chars()
446 p = *ret; in heb_number_to_chars()
447 return p; in heb_number_to_chars()