Home
last modified time | relevance | path

Searched refs:HT (Results 1 – 25 of 512) sorted by relevance

12345678910>>...21

/external/v8/src/logging/
Dcounters-definitions.h94 #define HISTOGRAM_TIMER_LIST(HT) \ argument
97 HT(gc_context, V8.GCContext, 10000, \
99 HT(gc_idle_notification, V8.GCIdleNotification, 10000, MILLISECOND) \
100 HT(gc_incremental_marking, V8.GCIncrementalMarking, 10000, MILLISECOND) \
101 HT(gc_incremental_marking_start, V8.GCIncrementalMarkingStart, 10000, \
103 HT(gc_incremental_marking_finalize, V8.GCIncrementalMarkingFinalize, 10000, \
105 HT(gc_low_memory_notification, V8.GCLowMemoryNotification, 10000, \
108 HT(collect_source_positions, V8.CollectSourcePositions, 1000000, \
110 HT(compile, V8.CompileMicroSeconds, 1000000, MICROSECOND) \
111 HT(compile_eval, V8.CompileEvalMicroSeconds, 1000000, MICROSECOND) \
[all …]
Dcounters.cc159 #define HT(name, caption, max, res) \ in Counters() macro
161 HISTOGRAM_TIMER_LIST(HT) in Counters()
162 #undef HT in Counters()
175 #define HT(name, caption, max, res) \ in Counters() macro
177 TIMED_HISTOGRAM_LIST(HT) in Counters()
178 #undef HT in Counters()
301 #define HT(name, caption, max, res) name##_.Reset(); in ResetCreateHistogramFunction() macro
302 HISTOGRAM_TIMER_LIST(HT) in ResetCreateHistogramFunction()
303 #undef HT in ResetCreateHistogramFunction()
305 #define HT(name, caption, max, res) name##_.Reset(); in ResetCreateHistogramFunction() macro
[all …]
Dcounters.h1324 #define HT(name, caption, max, res) \ macro
1326 HISTOGRAM_TIMER_LIST(HT)
1327 #undef HT
1329 #define HT(name, caption, max, res) \ macro
1331 TIMED_HISTOGRAM_LIST(HT)
1332 #undef HT
1430 #define HT(name, caption, max, res) HistogramTimer name##_; macro
1431 HISTOGRAM_TIMER_LIST(HT)
1432 #undef HT
1434 #define HT(name, caption, max, res) TimedHistogram name##_; macro
[all …]
/external/tcpdump/tests/
Dgeonet_and_calm_fast.out1 GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
2 GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
3 GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
4 GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
5 GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
6 GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
7 GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
8 GeoNet src:00:0c:42:6d:54:d5; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
9 GeoNet src:00:0c:42:6d:54:df; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
10 GeoNet src:00:0c:42:6d:54:db; v:0 NH:0-Any HT:1-0-Beacon HopLim:1 Payload:0 GN_ADDR:00:00:00:0c:42:…
[all …]
Dgeonet-mac-lookup-heapoverflow.out1 GeoNet src:30:30:30:30:30:30; v:3 NH:0-Any HT:3-0-GeoAnycastCircle HopLim:48 Payload:12336 [|geonet]
Dcve-2014-8768-Geonet.out1 GeoNet src:07:07:07:07:07:07; v:12 NH:6-Unknown HT:5-1-TopoScopeBcast-MH HopLim:7 Payload:1799 GN_A…
/external/llvm/include/llvm/ADT/
DScopedHashTable.h84 ScopedHashTable<K, V, KInfo, AllocatorTy> &HT; variable
96 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT);
222 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, Allocator> &ht) : HT(ht) { in ScopedHashTableScope()
223 PrevScope = HT.CurScope; in ScopedHashTableScope()
224 HT.CurScope = this; in ScopedHashTableScope()
230 assert(HT.CurScope == this && "Scope imbalance!"); in ~ScopedHashTableScope()
231 HT.CurScope = PrevScope; in ~ScopedHashTableScope()
237 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope()
239 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope()
241 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()]; in ~ScopedHashTableScope()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DScopedHashTable.h88 ScopedHashTable<K, V, KInfo, AllocatorTy> &HT; variable
98 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT);
230 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, Allocator> &ht) : HT(ht) { in ScopedHashTableScope()
231 PrevScope = HT.CurScope; in ScopedHashTableScope()
232 HT.CurScope = this; in ScopedHashTableScope()
238 assert(HT.CurScope == this && "Scope imbalance!"); in ~ScopedHashTableScope()
239 HT.CurScope = PrevScope; in ~ScopedHashTableScope()
245 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope()
247 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope()
249 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()]; in ~ScopedHashTableScope()
[all …]
/external/clang/lib/Serialization/
DMultiOnDiskHashTable.h137 auto &HT = ODT->Table; in condense() local
138 Info &InfoObj = HT.getInfoObj(); in condense()
140 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in condense()
233 auto &HT = ODT->Table; in find() local
234 auto It = HT.find_hashed(Key, KeyHash); in find()
235 if (It != HT.end()) in find()
236 HT.getInfoObj().ReadDataInto(Key, It.getDataPtr(), It.getDataLen(), in find()
258 auto &HT = ODT->Table; in findAll() local
259 Info &InfoObj = HT.getInfoObj(); in findAll()
260 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in findAll()
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Db52cb4e233e148771eeed9496b70d742.00018c54.honggfuzz.cov183HT�cSO�Q��u�^Fa�'N� ��3���K>S�{)���8k�e��a8���+i��l��E��t5gb��l}��E�X�yN,�'���0rx��c�s�…
Df371bb0a8fce4bbdd242baf110a68728.00018cd8.honggfuzz.cov320HT�cSO�Q��u�^Fa�'N� ��3���K>S�{)���8k�e��a8���+i��l��E��t5gb��l}��E�X�yN,�'���0rx��c�s�…
Da3d7b91896fbfaca88feb5ca997d6c78.000000b2.honggfuzz.cov3 connection: Upgr�de, HT�P2-Settimhs
D74ce7014c97ea8ae5b30bd8a7ce1c2aa.000000b2.honggfuzz.cov3 connection: Upgr�de, HT�P2-�ettimh[
D010b1ef1f17a6bf053dfe5ce2e550fdd.00001ff2.honggfuzz.cov36 ��A�ίGii�K̖�"���<Qp��HT�C��� ,r�76˙ ����2�d]#Ril���ղ��
42 ��A�ίGii�K̖�"���<Qp��HT�C��� ,r�76˙ ����2�d]#Ril���ղ��
49 ��A�ίGii�K̖�"���<Qp��HT�C��� ,r�76˙ ����2�d]#Ril���ղ��
54 ��A�ίGii�K̖�"���<Qp��HT�C��� ,r�76˙ ����2�d]#Ril���ղ��
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Db52cb4e233e148771eeed9496b70d742.00018c54.honggfuzz.cov183HT�cSO�Q��u�^Fa�'N� ��3���K>S�{)���8k�e��a8���+i��l��E��t5gb��l}��E�X�yN,�'���0rx��c�s�…
/external/apache-http/src/org/apache/http/protocol/
DHTTP.java53 public static final int HT = 9; // <US-ASCII HT, horizontal-tab (9)> field in HTTP
98 return ch == SP || ch == HT || ch == CR || ch == LF; in isWhitespace()
/external/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGVLIW.cpp219 ScheduleHazardRecognizer::HazardType HT = in listScheduleTopDown() local
221 if (HT == ScheduleHazardRecognizer::NoHazard) { in listScheduleTopDown()
227 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in listScheduleTopDown()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DScheduleDAGVLIW.cpp218 ScheduleHazardRecognizer::HazardType HT = in listScheduleTopDown() local
220 if (HT == ScheduleHazardRecognizer::NoHazard) { in listScheduleTopDown()
226 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in listScheduleTopDown()
/external/lzma/C/
DAes.c108 #define HT(i, x, s) TT(x)[gb(x, s[(i + x) & 3])] macro
111 HT(i, 0, s) ^ \
112 HT(i, 1, s) ^ \
113 HT(i, 2, s) ^ \
114 HT(i, 3, s) ^ w[p + i]
/external/python/cpython3/Modules/
Dhashtable.c57 #define TABLE_HEAD(HT, BUCKET) \ argument
58 ((_Py_hashtable_entry_t *)_Py_SLIST_HEAD(&(HT)->buckets[BUCKET]))
61 #define HASHTABLE_ITEM_SIZE(HT) \ argument
62 (sizeof(_Py_hashtable_entry_t) + (HT)->key_size + (HT)->data_size)
/external/nist-sip/java/gov/nist/javax/sip/parser/
DTokenTypes.java178 public static final int HT = LexerCore.HT; field
/external/nist-sip/java/gov/nist/core/
DSeparators.java58 public static final String HT = "\t"; field
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DWinEHPrepare.cpp148 WinEHHandlerType HT; in addTryBlockMapEntry() local
151 HT.TypeDescriptor = nullptr; in addTryBlockMapEntry()
153 HT.TypeDescriptor = cast<GlobalVariable>(TypeInfo->stripPointerCasts()); in addTryBlockMapEntry()
154 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); in addTryBlockMapEntry()
155 HT.Handler = CPI->getParent(); in addTryBlockMapEntry()
158 HT.CatchObj.Alloca = AI; in addTryBlockMapEntry()
160 HT.CatchObj.Alloca = nullptr; in addTryBlockMapEntry()
161 TBME.HandlerArray.push_back(HT); in addTryBlockMapEntry()
/external/llvm/lib/CodeGen/
DWinEHPrepare.cpp139 WinEHHandlerType HT; in addTryBlockMapEntry() local
142 HT.TypeDescriptor = nullptr; in addTryBlockMapEntry()
144 HT.TypeDescriptor = cast<GlobalVariable>(TypeInfo->stripPointerCasts()); in addTryBlockMapEntry()
145 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); in addTryBlockMapEntry()
146 HT.Handler = CPI->getParent(); in addTryBlockMapEntry()
149 HT.CatchObj.Alloca = AI; in addTryBlockMapEntry()
151 HT.CatchObj.Alloca = nullptr; in addTryBlockMapEntry()
152 TBME.HandlerArray.push_back(HT); in addTryBlockMapEntry()
/external/grpc-grpc/test/core/end2end/fuzzers/server_fuzzer_corpus/
Dfc162db40f87facb73cff20751e23af2e1f5296e22 e text/htmlgrpcPRI * HT���TP/0.0

12345678910>>...21