Lines Matching defs:workp

887 	    wchar_t *workp = p;
889 (re_opcode_t) *(workp - 1) == charset_not ? "^" : "");
891 length = *workp++; /* the length of char_classes */
894 length = *workp++; /* the length of collating_symbol */
903 length = *workp++; /* the length of equivalence_class */
912 length = *workp++; /* the length of char_range */
919 length = *workp++; /* the length of char */
6187 CHAR_T *workp, *workp2, *charset_top;
6214 workp = p;
6223 uintptr_t alignedp = ((uintptr_t)workp
6227 workp += CHAR_CLASS_SIZE;
6244 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;
6245 workp++)
6248 wextra = (int32_t*)(extra + *workp++);
6267 for (workp2 = workp + coll_symbol_length ; workp < workp2 ;)
6271 length = __wcslen (workp);
6273 length = wcslen (workp);
6280 if (__wcscoll (workp, d) > 0)
6282 if (wcscoll (workp, d) > 0)
6285 workp += length + 1;
6309 match = __wcscoll (workp, str_buf);
6311 match = wcscoll (workp, str_buf);
6317 /* (str_buf > workp) indicate (str_buf + X > workp),
6322 /* Otherwise(str_buf < workp),
6323 (str_buf+next_character) may equals (workp).
6329 workp += length + 1;
6394 for (workp2 = workp + equiv_class_length ; workp < workp2 ;
6395 workp++)
6397 idx = (int32_t)*workp;
6420 for (workp2 = workp + equiv_class_length ; workp < workp2 ;)
6424 length = __wcslen (workp);
6426 length = wcslen (workp);
6433 if (__wcscoll (workp, d) > 0)
6435 if (wcscoll (workp, d) > 0)
6438 workp += length + 1;
6462 match = __wcscoll (workp, str_buf);
6464 match = wcscoll (workp, str_buf);
6471 /* (str_buf > workp) indicate (str_buf + X > workp),
6476 /* Otherwise(str_buf < workp),
6477 (str_buf+next_character) may equals (workp).
6483 workp += length + 1;
6497 for (; workp < p - chars_length ;)
6503 start_val = (uint32_t) *workp++; /* range_start */
6504 end_val = (uint32_t) *workp++; /* range_end */
6519 for (; workp < p - chars_length ;)
6530 if (*workp < 0)
6531 range_start_char = charset_top - (*workp++);
6534 str_buf[0] = *workp++;
6539 if (*workp < 0)
6540 range_end_char = charset_top - (*workp++);
6543 str_buf[4] = *workp++;
6559 for (; workp < p ; workp++)
6560 if (c == *workp)