/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
Deflater.cs | 51 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
52 /// <param name="count">The number of bytes to add</param>
54 public override void Add(byte[] data, int offset, int count)
|
Inflater.cs | 51 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
52 /// <param name="count">The number of bytes to add</param>
54 public override void Add(byte[] data, int offset, int count)
|
Deflater.cs | 51 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
52 /// <param name="count">The number of bytes to add</param>
54 public override void Add(byte[] data, int offset, int count)
|
Inflater.cs | 51 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
52 /// <param name="count">The number of bytes to add</param>
54 public override void Add(byte[] data, int offset, int count)
|
CodecBase.cs | 90 public void Add(byte[] data)
92 Add(data,0,data.Length);
99 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
100 /// <param name="count">The number of bytes to add</param>
103 public abstract void Add(byte[] data, int offset, int count);
|
CodecBase.cs | 90 public void Add(byte[] data)
92 Add(data,0,data.Length);
99 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
100 /// <param name="count">The number of bytes to add</param>
103 public abstract void Add(byte[] data, int offset, int count);
|
DotZLib.cs | 186 void Add(byte[] data);
192 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
193 /// <param name="count">The number of bytes to add</param>
195 void Add(byte[] data, int offset, int count);
|
DotZLib.cs | 186 void Add(byte[] data);
192 /// <param name="offset">The index of the first byte to add from <c>data</c></param>
193 /// <param name="count">The number of bytes to add</param>
195 void Add(byte[] data, int offset, int count);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_ignoreset.cc | 23 void IgnoreSet::Add(u32 stack_id) {
|
tsan_ignoreset.cc | 23 void IgnoreSet::Add(u32 stack_id) {
|
tsan_mutexset.cc | 25 void MutexSet::Add(u64 id, bool write, u64 epoch) { 47 // Add new mutex descriptor.
|
tsan_mutexset.cc | 25 void MutexSet::Add(u64 id, bool write, u64 epoch) { 47 // Add new mutex descriptor.
|
tsan_mutexset.h | 35 void Add(u64 id, bool write, u64 epoch); 60 void MutexSet::Add(u64 id, bool write, u64 epoch) {}
|
tsan_mutexset.h | 35 void Add(u64 id, bool write, u64 epoch); 60 void MutexSet::Add(u64 id, bool write, u64 epoch) {}
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_allocator_stats.h | 34 void Add(AllocatorStat i, uptr v) { 84 Add(AllocatorStat(i), s->Get(AllocatorStat(i)));
|
sanitizer_allocator_stats.h | 34 void Add(AllocatorStat i, uptr v) { 84 Add(AllocatorStat(i), s->Get(AllocatorStat(i)));
|
sanitizer_flag_parser.cc | 31 void Add(const char *name) { 154 unknown_flags.Add(name);
|
sanitizer_flag_parser.cc | 31 void Add(const char *name) { 154 unknown_flags.Add(name);
|
sanitizer_allocator_primary32.h | 79 void Add(void *ptr) { 293 stat->Add(AllocatorStatMapped, kRegionSize); 319 b->Add((void*)pointers_array[i]);
|
sanitizer_allocator_primary32.h | 79 void Add(void *ptr) { 293 stat->Add(AllocatorStatMapped, kRegionSize); 319 b->Add((void*)pointers_array[i]);
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerMutate.cpp | 395 T Add = Rand(21); 396 Add -= 10; 398 Val = Bswap(T(Bswap(Val) + Add)); // Add assuming different endiannes. 400 Val = Val + Add; // Add assuming current endiannes. 401 if (Add == 0 || Rand.RandBool()) // Maybe negate.
|
FuzzerMutate.cpp | 395 T Add = Rand(21); 396 Add -= 10; 398 Val = Bswap(T(Bswap(Val) + Add)); // Add assuming different endiannes. 400 Val = Val + Add; // Add assuming current endiannes. 401 if (Add == 0 || Rand.RandBool()) // Maybe negate.
|
FuzzerTracePC.h | 55 void Add(const uint8_t *Data, size_t Size) {
|
FuzzerTracePC.h | 55 void Add(const uint8_t *Data, size_t Size) {
|