Searched refs:templen (Results 1 – 3 of 3) sorted by relevance
/external/libcups/cups/ |
D | snprintf.c | 44 size_t templen; /* Length of "temp" */ in _cups_vsnprintf() local 180 templen = strlen(temp): in _cups_vsnprintf() 182 bytes += (int)templen; in _cups_vsnprintf() 186 if ((bufptr + templen) > bufend) in _cups_vsnprintf() 193 memcpy(bufptr, temp, templen + 1); in _cups_vsnprintf() 194 bufptr += templen; in _cups_vsnprintf() 211 templen = strlen(temp): in _cups_vsnprintf() 213 bytes += (int)templen; in _cups_vsnprintf() 217 if ((bufptr + templen) > bufend) in _cups_vsnprintf() 224 memcpy(bufptr, temp, templen + 1); in _cups_vsnprintf() [all …]
|
D | sidechannel.c | 109 int templen; /* Data length from message */ in cupsSideChannelRead() local 235 templen = ((buffer[2] & 255) << 8) | (buffer[3] & 255); in cupsSideChannelRead() 237 if (templen > 0 && (!data || !datalen)) in cupsSideChannelRead() 246 else if (!datalen || templen > *datalen || templen > (bytes - 4)) in cupsSideChannelRead() 263 *datalen = templen; in cupsSideChannelRead() 265 memcpy(data, buffer + 4, (size_t)templen); in cupsSideChannelRead()
|
/external/google-breakpad/src/common/dwarf/ |
D | dwarf2reader.cc | 625 size_t templen; in ProcessOneOpcode() local 661 uint64 advance_address = reader->ReadUnsignedLEB128(start, &templen); in ProcessOneOpcode() 662 oplen += templen; in ProcessOneOpcode() 674 const int64 advance_line = reader->ReadSignedLEB128(start, &templen); in ProcessOneOpcode() 675 oplen += templen; in ProcessOneOpcode() 688 const uint64 fileno = reader->ReadUnsignedLEB128(start, &templen); in ProcessOneOpcode() 689 oplen += templen; in ProcessOneOpcode() 694 const uint64 colno = reader->ReadUnsignedLEB128(start, &templen); in ProcessOneOpcode() 695 oplen += templen; in ProcessOneOpcode() 736 &templen); in ProcessOneOpcode() [all …]
|