Lines Matching refs:foundp
494 struct known_translation_t **foundp = NULL; in gl_dcigettext() local
563 foundp = (struct known_translation_t **) tfind (&search, &root, transcmp); in gl_dcigettext()
567 if (foundp != NULL && (*foundp)->counter == _nl_msg_cat_cntr) in gl_dcigettext()
571 retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation, in gl_dcigettext()
572 (*foundp)->translation_length); in gl_dcigettext()
574 retval = (char *) (*foundp)->translation; in gl_dcigettext()
837 if (foundp == NULL) in gl_dcigettext()
882 foundp = (struct known_translation_t **) in gl_dcigettext()
887 if (foundp == NULL in gl_dcigettext()
888 || __builtin_expect (*foundp != newp, 0)) in gl_dcigettext()
896 (*foundp)->counter = _nl_msg_cat_cntr; in gl_dcigettext()
897 (*foundp)->domain = domain; in gl_dcigettext()
898 (*foundp)->translation = retval; in gl_dcigettext()
899 (*foundp)->translation_length = retlen; in gl_dcigettext()