rp                 77 lib/replace/strptime.c     while (*rp == ' ')							      \
rp                 78 lib/replace/strptime.c       ++rp;								      \
rp                 79 lib/replace/strptime.c     if (*rp < '0' || *rp > '9')						      \
rp                 83 lib/replace/strptime.c       val += *rp++ - '0';						      \
rp                 84 lib/replace/strptime.c     } while (--__n > 0 && val * 10 <= to && *rp >= '0' && *rp <= '9');	      \
rp                 97 lib/replace/strptime.c 	while (*rp == ' ')						      \
rp                 98 lib/replace/strptime.c 	  ++rp;								      \
rp                105 lib/replace/strptime.c 	      if (strncasecmp (alts, rp, len) == 0)			      \
rp                141 lib/replace/strptime.c    && (rp = strptime_internal (rp, (new_fmt), tm, decided, era_cnt)) != NULL)
rp                240 lib/replace/strptime.c strptime_internal __P ((const char *rp, const char *fmt, struct tm *tm,
rp                247 lib/replace/strptime.c strptime_internal (rp, fmt, tm, decided, era_cnt)
rp                248 lib/replace/strptime.c      const char *rp;
rp                282 lib/replace/strptime.c 	  while (isspace (*rp))
rp                283 lib/replace/strptime.c 	    ++rp;
rp                292 lib/replace/strptime.c 	  match_char (*fmt++, *rp++);
rp                303 lib/replace/strptime.c       rp_backup = rp;
rp                309 lib/replace/strptime.c 	  match_char ('%', *rp++);
rp                319 lib/replace/strptime.c 		  if (match_string (_NL_CURRENT (LC_TIME, DAY_1 + cnt), rp))
rp                327 lib/replace/strptime.c 		  if (match_string (_NL_CURRENT (LC_TIME, ABDAY_1 + cnt), rp))
rp                338 lib/replace/strptime.c 		  && (match_string (weekday_name[cnt], rp)
rp                339 lib/replace/strptime.c 		      || match_string (ab_weekday_name[cnt], rp)))
rp                360 lib/replace/strptime.c 		  if (match_string (_NL_CURRENT (LC_TIME, MON_1 + cnt), rp))
rp                368 lib/replace/strptime.c 		  if (match_string (_NL_CURRENT (LC_TIME, ABMON_1 + cnt), rp))
rp                378 lib/replace/strptime.c 	      if (match_string (month_name[cnt], rp)
rp                379 lib/replace/strptime.c 		  || match_string (ab_month_name[cnt], rp))
rp                401 lib/replace/strptime.c 		    rp = rp_backup;
rp                449 lib/replace/strptime.c 		    rp = rp_backup;
rp                503 lib/replace/strptime.c 	  while (isspace (*rp))
rp                504 lib/replace/strptime.c 	    ++rp;
rp                511 lib/replace/strptime.c 	      if (match_string (_NL_CURRENT (LC_TIME, AM_STR), rp))
rp                517 lib/replace/strptime.c 	      if (match_string (_NL_CURRENT (LC_TIME, PM_STR), rp))
rp                527 lib/replace/strptime.c 	  if (!match_string (HERE_AM_STR, rp)) {
rp                528 lib/replace/strptime.c 	    if (match_string (HERE_PM_STR, rp)) {
rp                544 lib/replace/strptime.c 		    rp = rp_backup;
rp                571 lib/replace/strptime.c 	    if (*rp < '0' || *rp > '9')
rp                578 lib/replace/strptime.c 		secs += *rp++ - '0';
rp                580 lib/replace/strptime.c 	    while (*rp >= '0' && *rp <= '9');
rp                600 lib/replace/strptime.c 		    rp = rp_backup;
rp                626 lib/replace/strptime.c 	  if (*rp < '0' || *rp > '9')
rp                631 lib/replace/strptime.c 	    ++rp;
rp                632 lib/replace/strptime.c 	  while (*rp >= '0' && *rp <= '9');
rp                688 lib/replace/strptime.c 			rp = rp_backup;
rp                711 lib/replace/strptime.c 		      if (match_string (era->era_name, rp))
rp                724 lib/replace/strptime.c 			   ++era_cnt, rp = rp_backup)
rp                727 lib/replace/strptime.c 			  if (match_string (era->era_name, rp))
rp                763 lib/replace/strptime.c 		       ++era_cnt, rp = rp_backup)
rp                775 lib/replace/strptime.c 			rp = rp_backup;
rp                804 lib/replace/strptime.c 			rp = rp_backup;
rp                830 lib/replace/strptime.c 			rp = rp_backup;
rp                976 lib/replace/strptime.c   return discard_const_p(char, rp);
rp                 85 source4/torture/rpc/spoolss_notify.c 	struct received_packet *rp;
rp                 87 source4/torture/rpc/spoolss_notify.c 	rp = talloc_zero(talloc_autofree_context(), struct received_packet);
rp                 88 source4/torture/rpc/spoolss_notify.c 	rp->opnum = opnum;
rp                 89 source4/torture/rpc/spoolss_notify.c 	rp->r = talloc_reference(rp, r);
rp                 91 source4/torture/rpc/spoolss_notify.c 	DLIST_ADD_END(received_packets, rp, struct received_packet *);