HomeSort by relevance Sort by last modified time
    Searched refs:ArrayStart (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/LLVM/runtime/libprofile/
BasicBlockTracing.c 20 static unsigned *ArrayStart, *ArrayEnd, *ArrayCursor;
26 write_profiling_data(BBTraceInfo, ArrayStart, (ArrayCursor - ArrayStart));
27 ArrayCursor = ArrayStart;
35 free (ArrayStart);
50 unsigned *arrayStart, unsigned numElements) {
59 ArrayStart = malloc (ArraySize * sizeof (unsigned));
60 ArrayEnd = ArrayStart + ArraySize;
61 ArrayCursor = ArrayStart;
EdgeProfiling.c 19 static unsigned *ArrayStart;
31 write_profiling_data(EdgeInfo, ArrayStart, NumElements);
39 unsigned *arrayStart, unsigned numElements) {
41 ArrayStart = arrayStart;
OptimalEdgeProfiling.c 19 static unsigned *ArrayStart;
31 write_profiling_data(OptEdgeInfo, ArrayStart, NumElements);
39 unsigned *arrayStart, unsigned numElements) {
41 ArrayStart = arrayStart;
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 349 llvm::Value *ArrayStart =
350 Builder.CreateInBoundsGEP(ArrayPtr.getPointer(), IdxStart, "arraystart");
351 CGF.EmitStoreThroughLValue(RValue::get(ArrayStart), Start);
    [all...]

Completed in 251 milliseconds