/external/v8/src/logging/ |
D | counters-definitions.h | 94 #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 …]
|
D | counters.cc | 159 #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 …]
|
D | counters.h | 1324 #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/ |
D | geonet_and_calm_fast.out | 1 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 …]
|
D | geonet-mac-lookup-heapoverflow.out | 1 GeoNet src:30:30:30:30:30:30; v:3 NH:0-Any HT:3-0-GeoAnycastCircle HopLim:48 Payload:12336 [|geonet]
|
D | cve-2014-8768-Geonet.out | 1 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/ |
D | ScopedHashTable.h | 84 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/ |
D | ScopedHashTable.h | 88 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/ |
D | MultiOnDiskHashTable.h | 137 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/ |
D | b52cb4e233e148771eeed9496b70d742.00018c54.honggfuzz.cov | 183 …HT�cSO�Q��u�^Fa�'N� ��3���K>S�{)���8k�e��a8���+i�l��E��t5gb��l}��E�X�yN,�'���0rx��c�s�…
|
D | f371bb0a8fce4bbdd242baf110a68728.00018cd8.honggfuzz.cov | 320 …HT�cSO�Q��u�^Fa�'N� ��3���K>S�{)���8k�e��a8���+i�l��E��t5gb��l}��E�X�yN,�'���0rx��c�s�…
|
D | a3d7b91896fbfaca88feb5ca997d6c78.000000b2.honggfuzz.cov | 3 connection: Upgr�de, HT�P2-Settimhs
|
D | 74ce7014c97ea8ae5b30bd8a7ce1c2aa.000000b2.honggfuzz.cov | 3 connection: Upgr�de, HT�P2-�ettimh[
|
D | 010b1ef1f17a6bf053dfe5ce2e550fdd.00001ff2.honggfuzz.cov | 36 ��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/ |
D | b52cb4e233e148771eeed9496b70d742.00018c54.honggfuzz.cov | 183 …HT�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/ |
D | HTTP.java | 53 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/ |
D | ScheduleDAGVLIW.cpp | 219 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/ |
D | ScheduleDAGVLIW.cpp | 218 ScheduleHazardRecognizer::HazardType HT = in listScheduleTopDown() local 220 if (HT == ScheduleHazardRecognizer::NoHazard) { in listScheduleTopDown() 226 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in listScheduleTopDown()
|
/external/lzma/C/ |
D | Aes.c | 108 #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/ |
D | hashtable.c | 57 #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/ |
D | TokenTypes.java | 178 public static final int HT = LexerCore.HT; field
|
/external/nist-sip/java/gov/nist/core/ |
D | Separators.java | 58 public static final String HT = "\t"; field
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | WinEHPrepare.cpp | 148 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/ |
D | WinEHPrepare.cpp | 139 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/ |
D | fc162db40f87facb73cff20751e23af2e1f5296e | 22 e text/htmlgrpcPRI * HT��TP/0.0
|