Searched defs:AddInt (Results 1 – 3 of 3) sorted by relevance
35 void AddInt(const int *in_0, const int *in_1, int *out, int start, int end) { in AddInt() function
292 public void AddInt(int x) { Prep(sizeof(int), 0); PutInt(x); } in AddInt() method in Google.FlatBuffers.FlatBufferBuilder615 … public void AddInt(int o, int x, int d) { if (ForceDefaults || x != d) { AddInt(x); Slot(o); } } in AddInt() method in Google.FlatBuffers.FlatBufferBuilder623 public void AddInt(int o, int? x) { if (x.HasValue) { AddInt(x.Value); Slot(o); } } in AddInt() method in Google.FlatBuffers.FlatBufferBuilder
81 BENCHMARK_DEFINE_F(LRUCacheBenchmark, AddInt) in BENCHMARK_DEFINE_F() argument