Home
last modified time | relevance | path

Searched refs:bufferLength (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/crypto/external/cpl/trousers/dist/src/tspi/daa/daa_anonymityrevocation/
H A Dcsencryption_result.c69 int bufferLength = c1_size + c2_size + c3_size + conditionLength; in compute_u() local
71 buffer = (BYTE *)malloc( bufferLength); in compute_u()
73 LogError("malloc of %d bytes failed", bufferLength); in compute_u()
85 bytes = compute_bytes( bufferLength, buffer, length, digest); in compute_u()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/
H A Dbacktrace.d518 size_t bufferLength = 0;
522 const count = snprintf(buffer.ptr + bufferLength,
523 buffer.length - bufferLength,
526 bufferLength += count;
527 if (bufferLength >= buffer.length)
528 bufferLength = buffer.length - 1;
553 return buffer[0 .. bufferLength];
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/gcc/
H A Dbacktrace.d500 size_t bufferLength = 0;
504 const count = snprintf(buffer.ptr + bufferLength,
505 buffer.length - bufferLength,
508 bufferLength += count;
509 if (bufferLength >= buffer.length)
510 bufferLength = buffer.length - 1;
535 return buffer[0 .. bufferLength];
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/common/
H A Dstring.d193 const bufferLength = pathLength + prefixLength + 1; in version() local
196 auto absPath = SmallBuffer!wchar(bufferLength, absBuf); in version()