Searched refs:tempptr (Results 1 – 10 of 10) sorted by relevance
/external/libcups/cups/ |
D | ipp-vars.c | 53 *tempptr; /* Pointer into temporary string */ in _ippVarsExpand() local 77 for (tempptr = temp; *tempptr; tempptr ++) in _ippVarsExpand() 78 if (*tempptr == ']') in _ippVarsExpand() 81 if (*tempptr) in _ippVarsExpand() 82 *tempptr++ = '\0'; in _ippVarsExpand() 85 src += tempptr - temp + 5; in _ippVarsExpand() 93 if ((tempptr = strchr(temp, '}')) != NULL) in _ippVarsExpand() 94 *tempptr = '\0'; in _ippVarsExpand() 96 tempptr = temp + strlen(temp); in _ippVarsExpand() 102 for (tempptr = temp; *tempptr; tempptr ++) in _ippVarsExpand() [all …]
|
D | string.c | 211 *tempptr; /* Pointer into temporary string */ in _cupsStrFormatd() local 222 for (tempptr = temp + strlen(temp) - 1; in _cupsStrFormatd() 223 tempptr > temp && *tempptr == '0'; in _cupsStrFormatd() 224 *tempptr-- = '\0'); in _cupsStrFormatd() 252 for (tempptr = temp, bufptr = buf; in _cupsStrFormatd() 253 tempptr < tempdec && bufptr < bufend; in _cupsStrFormatd() 254 *bufptr++ = *tempptr++); in _cupsStrFormatd() 256 tempptr += declen; in _cupsStrFormatd() 258 if (*tempptr && bufptr < bufend) in _cupsStrFormatd() 262 while (*tempptr && bufptr < bufend) in _cupsStrFormatd() [all …]
|
D | ipp-file.c | 558 *tempptr; /* Pointer into temporary string */ in parse_value() local 750 tempptr = temp; in parse_value() 761 *tempptr = (char)((valueptr[0] - '0') << 4); in parse_value() 763 *tempptr = (char)((tolower(valueptr[0]) - 'a' + 10) << 4); in parse_value() 766 *tempptr |= (valueptr[1] - '0'); in parse_value() 768 *tempptr |= (tolower(valueptr[1]) - 'a' + 10); in parse_value() 770 tempptr ++; in parse_value() 773 return (ippSetOctetString(ipp, attr, element, temp, (int)(tempptr - temp))); in parse_value()
|
/external/mesa3d/src/compiler/glsl/ |
D | opt_rebalance_tree.cpp | 90 ir_expression *tempptr = remainder_left; in tree_to_vine() local 91 ((ir_expression *)remainder)->operands[0] = tempptr->operands[1]; in tree_to_vine() 92 tempptr->operands[1] = remainder; in tree_to_vine() 93 remainder = tempptr; in tree_to_vine() 94 ((ir_expression *)vine_tail)->operands[1] = tempptr; in tree_to_vine()
|
/external/libcups/filter/ |
D | rastertoepson.c | 619 unsigned char *tempptr, in OutputLine() local 674 for (width = header->cupsWidth, tempptr = CompBuffer; in OutputLine() 676 width -= 2, tempptr += 2, oddptr += DotBytes * 2, in OutputLine() 679 evenptr[0] = tempptr[0]; in OutputLine() 680 oddptr[0] = tempptr[1]; in OutputLine() 685 evenptr[0] = tempptr[0]; in OutputLine() 686 oddptr[0] = tempptr[1]; in OutputLine() 695 for (width = header->cupsWidth, tempptr = CompBuffer, in OutputLine() 698 width --, tempptr ++, evenptr += DotBytes) in OutputLine() 699 *evenptr = tempptr[0]; in OutputLine()
|
/external/libcups/backend/ |
D | ieee1284.c | 270 *tempptr; /* Pointer into temp string */ in backendGetDeviceID() 300 if ((tempptr = strchr(temp, ' ')) != NULL) in backendGetDeviceID() 301 *tempptr = '\0'; in backendGetDeviceID()
|
D | usb-libusb.c | 1266 *tempptr; /* Pointer into temp string */ in make_device_uri() local 1329 if ((tempptr = strchr(tempmfg, ' ')) != NULL) in make_device_uri() 1330 *tempptr = '\0'; in make_device_uri()
|
/external/icu/icu4c/source/test/cintltst/ |
D | cmsccoll.c | 1282 uint8_t *tempptr; in TestCompressOverlap() local 1306 tempptr = (uint8_t *)uprv_strchr((char *)result, 1) + 1; in TestCompressOverlap() 1307 while (*(tempptr + 1) != 1) { in TestCompressOverlap() 1310 if (*tempptr < SEC_COMMON_MIDDLE) { in TestCompressOverlap() 1313 tempptr ++; in TestCompressOverlap() 1319 tempptr = (uint8_t *)uprv_strrchr((char *)result, 1) + 1; in TestCompressOverlap() 1320 while (*(tempptr + 1) != 0) { in TestCompressOverlap() 1323 if (*tempptr < TER_ONLY_COMMON_MIDDLE) { in TestCompressOverlap() 1326 tempptr ++; in TestCompressOverlap() 1333 tempptr = (uint8_t *)uprv_strchr((char *)result, 1) + 1; in TestCompressOverlap() [all …]
|
/external/pcre/dist2/src/ |
D | pcre2_compile.c | 2589 PCRE2_SPTR tempptr; in parse_regex() local 2808 (tempptr = ptr, in parse_regex() 2809 !read_repeat_counts(&tempptr, ptrend, NULL, NULL, &errorcode)))) in parse_regex() 2903 tempptr = ptr; in parse_regex() 2911 ptr = tempptr; in parse_regex() 3255 check_posix_syntax(ptr, ptrend, &tempptr)) in parse_regex() 3345 check_posix_syntax(ptr, ptrend, &tempptr)) in parse_regex() 3373 posix_class = check_posix_name(ptr, (int)(tempptr - ptr)); in parse_regex() 3379 ptr = tempptr + 2; in parse_regex() 3480 tempptr = ptr; in parse_regex() [all …]
|
/external/vboot_reference/tests/ |
D | cgptlib_test.c | 819 uint8_t *tempptr; in SanityCheckTest() local 935 tempptr = gpt->primary_entries; in SanityCheckTest() 940 gpt->primary_entries = tempptr; in SanityCheckTest()
|