Home
last modified time | relevance | path

Searched refs:HT (Results 1 - 16 of 16) sorted by relevance

/third_party/node/deps/v8/src/logging/
H A Dcounters-definitions.h122 #define NESTED_TIMED_HISTOGRAM_LIST(HT) \
123 /* Timer histograms, not thread safe: HT(name, caption, max, unit) */ \
125 HT(gc_idle_notification, V8.GCIdleNotification, 10000, MILLISECOND) \
126 HT(gc_incremental_marking, V8.GCIncrementalMarking, 10000, MILLISECOND) \
127 HT(gc_incremental_marking_start, V8.GCIncrementalMarkingStart, 10000, \
129 HT(gc_incremental_marking_finalize, V8.GCIncrementalMarkingFinalize, 10000, \
131 HT(gc_low_memory_notification, V8.GCLowMemoryNotification, 10000, \
134 HT(collect_source_positions, V8.CollectSourcePositions, 1000000, \
136 HT(compile, V8.CompileMicroSeconds, 1000000, MICROSECOND) \
137 HT(compile_eva
[all...]
H A Dcounters.cc135 #define HT(name, caption, max, res) \ in Counters() macro
137 NESTED_TIMED_HISTOGRAM_LIST(HT) NESTED_TIMED_HISTOGRAM_LIST_SLOW(HT) in Counters()
138 #undef HT in Counters() macro
152 #define HT(name, caption, max, res) \ in Counters() macro
154 TIMED_HISTOGRAM_LIST(HT) in Counters()
155 #undef HT in Counters() macro
276 #define HT(name, caption, max, res) name##_.Reset(); in ResetCreateHistogramFunction() macro
277 NESTED_TIMED_HISTOGRAM_LIST(HT) in ResetCreateHistogramFunction()
278 #undef HT in ResetCreateHistogramFunction() macro
280 #define HT ResetCreateHistogramFunction() macro
282 #undef HT ResetCreateHistogramFunction() macro
284 #define HT ResetCreateHistogramFunction() macro
286 #undef HT ResetCreateHistogramFunction() macro
[all...]
H A Dcounters.h515 #define HT(name, caption, max, res) \ macro
520 NESTED_TIMED_HISTOGRAM_LIST(HT)
521 #undef HT macro
523 #define HT(name, caption, max, res) \ macro
528 NESTED_TIMED_HISTOGRAM_LIST_SLOW(HT)
529 #undef HT macro
531 #define HT(name, caption, max, res) \ macro
536 TIMED_HISTOGRAM_LIST(HT)
537 #undef HT macro
644 #define HT(nam macro
647 #undef HT global() macro
649 #define HT global() macro
651 #undef HT global() macro
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DScopedHashTable.h13 // ScopedHashTable<int, int> HT;
15 // ScopedHashTableScope<int, int> Scope1(HT);
16 // HT.insert(0, 0);
17 // HT.insert(1, 1);
19 // ScopedHashTableScope<int, int> Scope2(HT);
20 // HT.insert(0, 42);
86 /// HT - The hashtable that we are active for.
87 ScopedHashTable<K, V, KInfo, AllocatorTy> &HT; member in llvm::ScopedHashTableScope
89 /// PrevScope - This is the scope that we are shadowing in HT.
97 ScopedHashTableScope(ScopedHashTable<K, V, KInfo, AllocatorTy> &HT);
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp216 ScheduleHazardRecognizer::HazardType HT = in listScheduleTopDown() local
218 if (HT == ScheduleHazardRecognizer::NoHazard) { in listScheduleTopDown()
224 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in listScheduleTopDown()
H A DScheduleDAGRRList.cpp680 ScheduleHazardRecognizer::HazardType HT = in AdvancePastStalls() local
683 if (HT == ScheduleHazardRecognizer::NoHazard) in AdvancePastStalls()
/third_party/lzma/C/
H A DAes.c162 #define HT(i, x, s) TT(x)[gb(x, s[(i + x) & 3])] macro
165 HT(i, 0, s) ^ \
166 HT(i, 1, s) ^ \
167 HT(i, 2, s) ^ \
168 HT(i, 3, s) ^ w[p + i]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp149 WinEHHandlerType HT; in addTryBlockMapEntry() local
152 HT.TypeDescriptor = nullptr; in addTryBlockMapEntry()
154 HT.TypeDescriptor = cast<GlobalVariable>(TypeInfo->stripPointerCasts()); in addTryBlockMapEntry()
155 HT.Adjectives = cast<ConstantInt>(CPI->getArgOperand(1))->getZExtValue(); in addTryBlockMapEntry()
156 HT.Handler = CPI->getParent(); in addTryBlockMapEntry()
159 HT.CatchObj.Alloca = AI; in addTryBlockMapEntry()
161 HT.CatchObj.Alloca = nullptr; in addTryBlockMapEntry()
162 TBME.HandlerArray.push_back(HT); in addTryBlockMapEntry()
H A DPostRASchedulerList.cpp575 ScheduleHazardRecognizer::HazardType HT = in ListScheduleTopDown() local
577 if (HT == ScheduleHazardRecognizer::NoHazard) { in ListScheduleTopDown()
594 HasNoopHazards |= HT == ScheduleHazardRecognizer::NoopHazard; in ListScheduleTopDown()
/third_party/python/Python/
H A Dhashtable.c57 #define TABLE_HEAD(HT, BUCKET) \
58 ((_Py_hashtable_entry_t *)_Py_SLIST_HEAD(&(HT)->buckets[BUCKET]))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp833 for (const WinEHHandlerType &HT : TBME.HandlerArray) { in emitCXXFrameHandler3Table()
838 if (HT.CatchObj.FrameIndex != INT_MAX) { in emitCXXFrameHandler3Table()
839 int Offset = getFrameIndexOffset(HT.CatchObj.FrameIndex, FuncInfo); in emitCXXFrameHandler3Table()
847 getMCSymbolForMBB(Asm, HT.Handler.dyn_cast<MachineBasicBlock *>()); in emitCXXFrameHandler3Table()
850 OS.EmitIntValue(HT.Adjectives, 4); in emitCXXFrameHandler3Table()
853 OS.EmitValue(create32bitRef(HT.TypeDescriptor), 4); in emitCXXFrameHandler3Table()
/third_party/python/Lib/curses/
H A Dascii.py13 HT = 0x09 # ^I variable
42 "BS", "HT", "LF", "VT", "FF", "CR", "SO", "SI",
/third_party/node/deps/undici/src/lib/llhttp/
H A Dconstants.js236 * | "{" | "}" | SP | HT
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h103 inline const char *getHotnessName(CalleeInfo::HotnessType HT) { in getHotnessName()
104 switch (HT) { in getHotnessName()
/third_party/libphonenumber/javascript/i18n/phonenumbers/
H A Ddemo-compiled.js59 386:["SI"],387:["BA"],389:["MK"],420:["CZ"],421:["SK"],423:["LI"],500:["FK"],501:["BZ"],502:["GT"],503:["SV"],504:["HN"],505:["NI"],506:["CR"],507:["PA"],508:["PM"],509:["HT"],590:["GP","BL","MF"],591:["BO"],592:["GY"],593:["EC"],594:["GF"],595:["PY"],596:["MQ"],597:["SR"],598:["UY"],599:["CW","BQ"],670:["TL"],672:["NF"],673:["BN"],674:["NR"],675:["PG"],676:["TO"],677:["SB"],678:["VU"],679:["FJ"],680:["PW"],681:["WF"],682:["CK"],683:["NU"],685:["WS"],686:["KI"],687:["NC"],688:["TV"],689:["PF"],690:["TK"],
220 ["1"],"0$1"],[,"(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["6|7[245]"],"0$1"],[,"(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],[,"(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-57]"],"0$1"],[,"(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,"62\\d{6,7}|72\\d{6}",,,,"62123456",,,[8,9]],,,[,,,,,,,,,[-1]]],HT:[,[,,"(?:[2-489]\\d|55)\\d{6}",,,,,,,[8]],[,,"2(?:2\\d|5[1-5]|81|9[149])\\d{5}",,,,"22453300"],[,,"(?:[34]\\d|55)\\d{6}",,,,"34101234"],[,,"8\\d{7}",,,,
221 "80012345"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,"9(?:[67][0-4]|8[0-3589]|9\\d)\\d{5}",,,,"98901234"],"HT",509,"00",,,,,,,,[[,"(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[2-589]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],HU:[,[,,"[235-7]\\d{8}|[1-9]\\d{7}",,,,,,,[8,9],[6,7]],[,,"(?:1\\d|[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6[23689]|8[2-57-9]|9[2-69])\\d{6}",,,,"12345678",,,[8],[6,7]],[,,"(?:[257]0|3[01])\\d{7}",,,,"201234567",,,[9]],[,,"(?:[48]0\\d|680[29])\\d{5}",
577 ,,,,,[,,"1(?:12|9[2-4])|9[34]",,,,"93",,,[2,3]],,[,,"1(?:1(?:2|6(?:00[06]|1(?:1[17]|23))|8\\d\\d)|3977|9(?:[2-5]|87))|9[34]",,,,"93"],[,,,,,,,,,[-1]],[,,"139\\d\\d",,,,"13900",,,[5]],,[,,"139\\d\\d",,,,"13900",,,[5]]],HT:[,[,,"[14]\\d\\d(?:\\d{2})?",,,,,,,[3,5]],,,[,,"11[48]",,,,"114",,,[3]],[,,,,,,,,,[-1]],,,,"HT",,,,,,,,,,,,,,,,,,[,,"11[48]",,,,"114",,,[3]],,[,,"11[48]|40404",,,,"114"],[,,,,,,,,,[-1]],[,,"404\\d\\d",,,,"40400",,,[5]],,[,,"404\\d\\d",,,,"40400",,,[5]]],HU:[,[,,"1\\d{2,5}",,,,,,,
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dctrl_iface.c1226 freq_params.ht_enabled ? " HT" : "", in wpa_supplicant_ctrl_iface_tdls_chan_switch()
12082 HT = 2,
12116 technology = HT;

Completed in 44 milliseconds