Searched refs:numBytes (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/contrib/bmake/
H A Dbuf.c127 Buf_AddBytes(Buffer *bp, int numBytes, const Byte *bytesPtr) argument
132 if (__predict_false(count + numBytes >= bp->size)) {
133 bp->size += max(bp->size, numBytes + 16);
138 bp->count = count + numBytes;
139 ptr[numBytes] = 0;
140 memcpy(ptr, bytesPtr, numBytes);
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp175 void AppendBytes(CharUnits numBytes);
891 llvm::Type *CGRecordLayoutBuilder::getByteArrayType(CharUnits numBytes) { argument
892 assert(!numBytes.isZero() && "Empty byte arrays aren't allowed.");
895 if (numBytes > CharUnits::One())
896 Ty = llvm::ArrayType::get(Ty, numBytes.getQuantity());
901 void CGRecordLayoutBuilder::AppendBytes(CharUnits numBytes) { argument
902 if (numBytes.isZero())
906 AppendField(NextFieldOffset, getByteArrayType(numBytes));
/freebsd-10.2-release/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dmpidebug.c65 void mpiTraceAdd( bit32 q,bit32 pici,bit32 ib, void *iomb, bit32 numBytes) argument
95 si_memcpy(curIbTrace->Iomb, iomb, MIN(numBytes, MPI_DEBUG_TRACE_IB_IOMB_SIZE));
118 si_memcpy(curObTrace->Iomb, iomb, MIN(numBytes, MPI_DEBUG_TRACE_OB_IOMB_SIZE));
H A Dmpidebug.h76 void mpiTraceAdd(bit32 q,bit32 pici,bit32 ib, void *iomb, bit32 numBytes);
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_ppmd7.c259 UInt32 numBytes = U2B(I2U(indx)); local
261 return ((UInt32)(p->UnitsStart - p->Text) > numBytes) ? (p->UnitsStart -= numBytes) : (NULL);
272 UInt32 numBytes; local
275 numBytes = U2B(I2U(indx));
276 if (numBytes <= (UInt32)(p->HiUnit - p->LoUnit))
279 p->LoUnit += numBytes;

Completed in 283 milliseconds