Searched defs:countersAddress (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/runtime/ |
H A D | CoverageMap.java | 68 public static final long countersAddress = UNSAFE.allocateMemory(MAX_NUM_COUNTERS); field in CoverageMap 71 UNSAFE.setMemory(countersAddress, MAX_NUM_COUNTERS, (byte) 0); in UNSAFE.setMemory() argument 166 private static native void initialize(long countersAddress); in initialize()
|
/aosp_15_r20/external/jazzer-api/src/jmh/java/com/code_intelligence/jazzer/instrumentor/ |
H A D | Unsafe2CoverageMap.java | 40 private static final long countersAddress = UNSAFE.allocateMemory(NUM_COUNTERS); field in Unsafe2CoverageMap 43 UNSAFE.setMemory(countersAddress, NUM_COUNTERS, (byte) 0); in UNSAFE.setMemory() argument
|
H A D | UnsafeCoverageMap.java | 40 private static final long countersAddress = UNSAFE.allocateMemory(NUM_COUNTERS); field in UnsafeCoverageMap 43 UNSAFE.setMemory(countersAddress, NUM_COUNTERS, (byte) 0); in UNSAFE.setMemory() argument
|
H A D | UnsafeSimpleIncrementCoverageMap.java | 40 private static final long countersAddress = UNSAFE.allocateMemory(NUM_COUNTERS); field in UnsafeSimpleIncrementCoverageMap 43 UNSAFE.setMemory(countersAddress, NUM_COUNTERS, (byte) 0); in UNSAFE.setMemory() argument
|
H A D | UnsafeBranchfreeCoverageMap.java | 40 private static final long countersAddress = UNSAFE.allocateMemory(NUM_COUNTERS); field in UnsafeBranchfreeCoverageMap 43 UNSAFE.setMemory(countersAddress, NUM_COUNTERS, (byte) 0); in UNSAFE.setMemory() argument
|