/third_party/libwebsockets/lib/misc/ |
H A D | ieeehalfprecision.c | 91 uint16_t hs, he, hm; in lws_singles2halfp() local 138 hm = (uint16_t) 0u; // Set mantissa to zero in lws_singles2halfp() 141 hm = (uint16_t) (xm >> (14 - hes)); // Mantissa in lws_singles2halfp() 145 hm = (uint16_t)(hm + 1u); in lws_singles2halfp() 148 *hp = hs | hm; in lws_singles2halfp() 154 hm = (uint16_t)(xm >> 13); // Mantissa in lws_singles2halfp() 158 *hp = (uint16_t)((hs | he | hm) + (uint16_t)1u); in lws_singles2halfp() 160 *hp = hs | he | hm; // No rounding in lws_singles2halfp() 166 uint16_t hs, he, hm; in lws_halfp2singles() local [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | overloadOnConstInCallback1.js | 7 var hm = "hm"; variable 8 callback(hm); 19 var hm = "hm";
20 callback(hm);
|
H A D | overloadOnConstNoAnyImplementation.js | 7 var hm = 'hm'; 8 cb(hm); 22 var hm = 'hm';
23 cb(hm);
|
H A D | overloadOnConstNoStringImplementation.js | 7 var hm = 'hm'; 8 cb(hm); // should this work without a string definition? 22 var hm = 'hm';
23 cb(hm); // should this work without a string definition?
|
H A D | overloadOnConstNoAnyImplementation2.js | 11 var hm = "hm"; variable 12 callback(hm); 31 var hm = "hm";
32 callback(hm);
|
H A D | overloadOnConstNoStringImplementation2.js | 11 var hm = "hm"; variable 12 callback(hm); 30 var hm = "hm";
31 callback(hm);
|
H A D | typeParameterAsTypeParameterConstraintTransitively.js | 18 foo(a, b, { foo: 1, bar: '', hm: true }); 25 foo(b, b, { foo: 1, bar: '', hm: '' });
38 foo(a, b, { foo: 1, bar: '', hm: true });
44 foo(b, b, { foo: 1, bar: '', hm: '' });
|
H A D | typeParameterAsTypeParameterConstraintTransitively2.js | 18 foo(a, { foo: 1, bar: '', hm: true }, b); 37 foo(a, { foo: 1, bar: '', hm: true }, b);
|
H A D | constraintErrors1.js | 2 function foo5<T extends hm>(test: T) { }
|
H A D | typeParameterConstraints1.js | 7 function foo6<T extends hm>(test: T) { }
|
/third_party/libwebsockets/lib/roles/http/server/ |
H A D | server.c | 943 const struct lws_http_mount *hm, *hit = NULL; in lws_find_mount() local 946 hm = wsi->a.vhost->http.mount_list; in lws_find_mount() 947 while (hm) { in lws_find_mount() 948 if (uri_len >= hm->mountpoint_len && in lws_find_mount() 949 !strncmp(uri_ptr, hm->mountpoint, hm->mountpoint_len) && in lws_find_mount() 950 (uri_ptr[hm->mountpoint_len] == '\0' || in lws_find_mount() 951 uri_ptr[hm->mountpoint_len] == '/' || in lws_find_mount() 952 hm->mountpoint_len == 1) in lws_find_mount() 955 lws_metrics_tag_wsi_add(wsi, "mnt", hm in lws_find_mount() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | vp9lpf.c | 37 unsigned hm = hm1 | hm2 | hm13 | hm23; in filter_plane_cols() local 39 for (x = 1; hm & ~(x - 1); x <<= 1, ptr += 8 * bytesperpixel >> ss_h) { in filter_plane_cols()
|
/third_party/protobuf/objectivec/DevTools/ |
H A D | full_mac_build.sh | 238 if ! objectivec/DevTools/pddm.py --dry-run objectivec/*.[hm] objectivec/Tests/*.[hm] ; then 241 echo " objectivec/DevTools/pddm.py objectivec/*.[hm] objectivec/Tests/*.[hm]"
|
/third_party/python/Lib/test/ |
H A D | test_context.py | 632 hm = h 645 self.assertEqual(hm.get(str(key)), dm[key]) 646 self.assertEqual(len(dm), len(hm)) 649 hm = hm.delete(str(key)) 650 self.assertEqual(hm.get(str(key), 'not found'), 'not found')
|
/third_party/lzma/CPP/Windows/ |
H A D | FileFind.cpp | 262 const HMODULE hm = ::GetModuleHandleA("kernel32.dll");
in CFindStreamLoader() local 264 Func_FindFirstStreamW, hm,
in CFindStreamLoader() 267 Func_FindNextStreamW, hm,
in CFindStreamLoader()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | driver_ndis.c | 2498 HMODULE hm; in wpa_driver_ndis_set_wzc() 2514 hm = LoadLibrary(TEXT("wzcsapi.dll")); in wpa_driver_ndis_set_wzc() 2515 if (hm == NULL) { in wpa_driver_ndis_set_wzc() 2523 wzc_enum_interf = (void *) GetProcAddressA(hm, "WZCEnumInterfaces"); in wpa_driver_ndis_set_wzc() 2524 wzc_query_interf = (void *) GetProcAddressA(hm, "WZCQueryInterface"); in wpa_driver_ndis_set_wzc() 2525 wzc_set_interf = (void *) GetProcAddressA(hm, "WZCSetInterface"); in wpa_driver_ndis_set_wzc() 2527 wzc_enum_interf = (void *) GetProcAddress(hm, "WZCEnumInterfaces"); in wpa_driver_ndis_set_wzc() 2528 wzc_query_interf = (void *) GetProcAddress(hm, "WZCQueryInterface"); in wpa_driver_ndis_set_wzc() 2529 wzc_set_interf = (void *) GetProcAddress(hm, "WZCSetInterface"); in wpa_driver_ndis_set_wzc() 2649 FreeLibrary(hm); in wpa_driver_ndis_set_wzc() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | driver_ndis.c | 2510 HMODULE hm; in wpa_driver_ndis_set_wzc() 2526 hm = LoadLibrary(TEXT("wzcsapi.dll")); in wpa_driver_ndis_set_wzc() 2527 if (hm == NULL) { in wpa_driver_ndis_set_wzc() 2535 wzc_enum_interf = (void *) GetProcAddressA(hm, "WZCEnumInterfaces"); in wpa_driver_ndis_set_wzc() 2536 wzc_query_interf = (void *) GetProcAddressA(hm, "WZCQueryInterface"); in wpa_driver_ndis_set_wzc() 2537 wzc_set_interf = (void *) GetProcAddressA(hm, "WZCSetInterface"); in wpa_driver_ndis_set_wzc() 2539 wzc_enum_interf = (void *) GetProcAddress(hm, "WZCEnumInterfaces"); in wpa_driver_ndis_set_wzc() 2540 wzc_query_interf = (void *) GetProcAddress(hm, "WZCQueryInterface"); in wpa_driver_ndis_set_wzc() 2541 wzc_set_interf = (void *) GetProcAddress(hm, "WZCSetInterface"); in wpa_driver_ndis_set_wzc() 2661 FreeLibrary(hm); in wpa_driver_ndis_set_wzc() [all...] |
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_maskedmerge.asm | 37 mov hd, dword hm
|
H A D | vf_threshold.asm | 37 mov hd, dword hm
|
/third_party/icu/icu4c/source/i18n/ |
H A D | measfmt.cpp | 72 const UnicodeString &hm, in NumericDateFormatters() 75 hourMinute(hm), in NumericDateFormatters() 232 loadNumericDateFormatterPattern(resource, "hm", status), in loadNumericDateFormatters() 742 // All possible combinations: "h", "m", "s", "hm", "hs", "ms", "hms" in formatNumeric() 747 } else if (bitMap == 3) { // "hm" in formatNumeric() 71 NumericDateFormatters( const UnicodeString &hm, const UnicodeString &ms, const UnicodeString &hms) NumericDateFormatters() argument
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | measfmt.cpp | 72 const UnicodeString &hm, in NumericDateFormatters() 75 hourMinute(hm), in NumericDateFormatters() 232 loadNumericDateFormatterPattern(resource, "hm", status), in loadNumericDateFormatters() 742 // All possible combinations: "h", "m", "s", "hm", "hs", "ms", "hms" in formatNumeric() 747 } else if (bitMap == 3) { // "hm" in formatNumeric() 71 NumericDateFormatters( const UnicodeString &hm, const UnicodeString &ms, const UnicodeString &hms) NumericDateFormatters() argument
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | measfmt.cpp | 72 const UnicodeString &hm, in NumericDateFormatters() 75 hourMinute(hm), in NumericDateFormatters() 232 loadNumericDateFormatterPattern(resource, "hm", status), in loadNumericDateFormatters() 742 // All possible combinations: "h", "m", "s", "hm", "hs", "ms", "hms" in formatNumeric() 747 } else if (bitMap == 3) { // "hm" in formatNumeric() 71 NumericDateFormatters( const UnicodeString &hm, const UnicodeString &ms, const UnicodeString &hms) NumericDateFormatters() argument
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | str_split_test.cc | 582 std::unordered_map<std::string, std::string> hm; in TEST() local 583 hm = absl::StrSplit("a,b,c", ','); in TEST() 584 EXPECT_EQ(2, hm.size()); in TEST()
|
/third_party/lame/frontend/ |
H A D | get_audio.c | 131 uint32_t const hm = uint32_high_low(bytes + 2); in read_ieee_extended_high_low() local 134 if (e != 0 || hm != 0 || lm != 0) { in read_ieee_extended_high_low() 139 double mantissa_h = UNSIGNED_TO_FLOAT(hm); in read_ieee_extended_high_low()
|
/third_party/skia/third_party/externals/angle2/src/image_util/ |
H A D | loadimage_etc.cpp | 290 } hm; member 596 const auto &block = u.idht.mode.hm; in decodeHBlock() 1266 const auto &block = u.idht.mode.hm; in transcodeHBlockToBC1()
|