HomeSort by: relevance | last modified time | path
    Searched refs:elementSize (Results 1 - 9 of 9) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/
arrayassign.d 29 immutable elementSize = ti.tsize;
33 void* ptmp = (elementSize > buf.sizeof) ? malloc(elementSize) : buf.ptr;
56 immutable elementSize = ti.tsize;
58 enforceRawArraysConformable("copy", elementSize, src, dst, true);
60 if (src.ptr < dst.ptr && dst.ptr < src.ptr + elementSize * src.length)
65 void* pdst = dst.ptr + i * elementSize;
66 void* psrc = src.ptr + i * elementSize;
67 memcpy(ptmp, pdst, elementSize);
68 memcpy(pdst, psrc, elementSize);
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/util/
array.d 37 void enforceRawArraysConformable(const char[] action, const size_t elementSize,
42 _enforceNoOverlap(action, arrayToPtr(a1), arrayToPtr(a2), elementSize * a1.length);
87 void enforceRawArraysConformableNogc(const char[] action, const size_t elementSize,
92 _enforceNoOverlapNogc(action, arrayToPtr(a1), arrayToPtr(a2), elementSize * a1.length);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
construction.d 52 void enforceRawArraysConformable(const char[] action, const size_t elementSize,
57 alias Type = void function(const char[] action, const size_t elementSize,
59 (cast(Type)&enforceRawArraysConformableNogc)(action, elementSize, a1, a2, false);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CharUnits.h 201 CharUnits alignmentOfArrayElement(CharUnits elementSize) const {
205 return alignmentAtOffset(elementSize);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprAgg.cpp 490 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
492 DestPtr.getAlignment().alignmentOfArrayElement(elementSize);
497 if (NumInitElements * elementSize.getQuantity() > 16 &&
1793 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
1795 destPtr.getAlignment().alignmentOfArrayElement(elementSize);
CGExprCXX.cpp 1000 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType);
1002 BeginPtr.getAlignment().alignmentOfArrayElement(ElementSize);
1058 ElementSize));
1117 StartAlign.alignmentAtOffset((i + 1) * ElementSize));
2037 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
2039 deletedPtr.getAlignment().alignmentOfArrayElement(elementSize);
CGExprScalar.cpp 3797 CharUnits elementSize;
3801 elementSize = CharUnits::One();
3803 elementSize = CGF.getContext().getTypeSizeInChars(elementType);
3806 if (elementSize.isOne())
3809 divisor = CGF.CGM.getSize(elementSize);
4987 auto *ElementSize = llvm::ConstantInt::get(
4990 LocalOffset = eval(BO_Mul, ElementSize, IndexS);
ItaniumCXXABI.cpp 2281 llvm::Value *elementSize = llvm::ConstantInt::get(CGF.SizeTy,
2283 CGF.Builder.CreateStore(elementSize, cookie);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/
object.d 3737 const size_t elementSize = element.tsize;
3738 if (!elementSize)
3755 return hashOf(ptr[0 .. elementSize * count]);
3759 hash = hashOf(element.getHash(ptr + i * elementSize), hash);

Completed in 106 milliseconds