Home
last modified time | relevance | path

Searched refs:he (Results 1 - 25 of 104) sorted by relevance

12345

/third_party/curl/lib/
H A Dhash.c83 struct Curl_hash_element *he = malloc(sizeof(struct Curl_hash_element) + in mk_hash_element() local
85 if(he) { in mk_hash_element()
87 memcpy(he->key, key, key_len); in mk_hash_element()
88 he->key_len = key_len; in mk_hash_element()
89 he->ptr = (void *) p; in mk_hash_element()
91 return he; in mk_hash_element()
107 struct Curl_hash_element *he; in Curl_hash_add() local
125 he = (struct Curl_hash_element *) le->ptr; in Curl_hash_add()
126 if(h->comp_func(he->key, he in Curl_hash_add()
159 struct Curl_hash_element *he = le->ptr; Curl_hash_delete() local
185 struct Curl_hash_element *he = le->ptr; Curl_hash_pick() local
262 struct Curl_hash_element *he = le->ptr; Curl_hash_clean_with_criterium() local
330 struct Curl_hash_element *he = iter->current_element->ptr; Curl_hash_next_element() local
[all...]
H A Dconncache.c195 struct Curl_hash_element *he; in conncache_remove_bundle() local
202 he = Curl_hash_next_element(&iter); in conncache_remove_bundle()
203 while(he) { in conncache_remove_bundle()
204 if(he->ptr == bundle) { in conncache_remove_bundle()
207 Curl_hash_delete(&connc->hash, he->key, he->key_len); in conncache_remove_bundle()
211 he = Curl_hash_next_element(&iter); in conncache_remove_bundle()
310 struct Curl_hash_element *he; in Curl_conncache_foreach() local
318 he = Curl_hash_next_element(&iter); in Curl_conncache_foreach()
319 while(he) { in Curl_conncache_foreach()
352 struct Curl_hash_element *he; conncache_find_first_connection() local
471 struct Curl_hash_element *he; Curl_conncache_extract_oldest() local
[all...]
H A Dcurl_addrinfo.c256 Curl_he2ai(const struct hostent *he, int port) in Curl_he2ai() argument
269 if(!he) in Curl_he2ai()
273 DEBUGASSERT((he->h_name != NULL) && (he->h_addr_list != NULL)); in Curl_he2ai()
275 for(i = 0; (curr = he->h_addr_list[i]) != NULL; i++) { in Curl_he2ai()
277 size_t namelen = strlen(he->h_name) + 1; /* include null-terminator */ in Curl_he2ai()
279 if(he->h_addrtype == AF_INET6) in Curl_he2ai()
295 memcpy(ai->ai_canonname, he->h_name, namelen); in Curl_he2ai()
305 ai->ai_family = he->h_addrtype; in Curl_he2ai()
320 addr->sin_family = (CURL_SA_FAMILY_T)(he in Curl_he2ai()
[all...]
/third_party/libwebsockets/lib/misc/
H A Dieeehalfprecision.c91 uint16_t hs, he, hm; in lws_singles2halfp() local
153 he = (uint16_t)(hes << 10); // Exponent 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
178 he = h & 0x7C00u; // Pick off exponent bits in lws_halfp2singles()
181 if (!he) { // Denormal will convert to normalized in lws_halfp2singles()
194 xes = ((int32_t)(he >> 10)) - 15 + 127 - e; in lws_halfp2singles()
203 if (he == 0x7C00u) { /* Inf or NaN (all the exponent bits are set) */ in lws_halfp2singles()
222 xes = ((int32_t)(he >> 1 in lws_halfp2singles()
[all...]
/third_party/ffmpeg/tests/fate/
H A Dgapless.mak13 FATE_GAPLESS-$(CONFIG_MOV_DEMUXER) += fate-audiomatch-afconvert-16000-mono-he-adts fate-audiomatch-afconvert-16000-mono-he-m4a
14 FATE_GAPLESS-$(CONFIG_MOV_DEMUXER) += fate-audiomatch-afconvert-44100-mono-he-adts fate-audiomatch-afconvert-44100-mono-he-m4a
15 FATE_GAPLESS-$(CONFIG_MOV_DEMUXER) += fate-audiomatch-afconvert-16000-stereo-he-adts fate-audiomatch-afconvert-16000-stereo-he-m4a
16 FATE_GAPLESS-$(CONFIG_MOV_DEMUXER) += fate-audiomatch-afconvert-44100-stereo-he-adts fate-audiomatch-afconvert-44100-stereo-he-m4a
28 FATE_GAPLESS-$(CONFIG_MOV_DEMUXER) += fate-audiomatch-dolby-44100-mono-he-mp4
29 FATE_GAPLESS-$(CONFIG_MOV_DEMUXER) += fate-audiomatch-dolby-44100-stereo-he
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dir_builder_print_visitor.cpp259 const struct hash_entry *const he = in print_without_declaration() local
262 print_without_indent("r%04X", (unsigned)(uintptr_t) he->data); in print_without_declaration()
268 const struct hash_entry *const he = in visit() local
271 if (he != NULL) in visit()
272 _mesa_hash_table_insert(index_map, ir, he->data); in visit()
439 const struct hash_entry *const he = in print_without_declaration() local
450 assert(he); in print_without_declaration()
453 (unsigned)(uintptr_t) he->data); in print_without_declaration()
458 assert(he); in print_without_declaration()
460 (unsigned)(uintptr_t) he in print_without_declaration()
581 const struct hash_entry *const he = print_without_declaration() local
628 const struct hash_entry *const he = visit_enter() local
678 const struct hash_entry *const he = visit_leave() local
705 const struct hash_entry *const he = visit_leave() local
715 const struct hash_entry *const he = visit_leave() local
755 const struct hash_entry *const he = visit_leave() local
[all...]
/third_party/musl/porting/liteos_a/user/src/network/
H A Dent.c22 struct hostent he; member
54 hd->he.h_addrtype = AF_INET; in gethostent_resolv()
55 hd->he.h_length = INET_ADDR_LEN; in gethostent_resolv()
58 hd->he.h_addrtype = AF_INET6; in gethostent_resolv()
59 hd->he.h_length = INET6_ADDR_LEN; in gethostent_resolv()
67 hd->he.h_addr_list = hd->addr; in gethostent_resolv()
72 hd->he.h_name = ch; in gethostent_resolv()
81 hd->he.h_aliases = hd->aliases; in gethostent_resolv()
108 return &(hd->he); in gethostent()
/third_party/musl/src/network/
H A Dent.c28 struct hostent he; member
60 hd->he.h_addrtype = AF_INET; in gethostent_resolv()
61 hd->he.h_length = INET_ADDR_LEN; in gethostent_resolv()
64 hd->he.h_addrtype = AF_INET6; in gethostent_resolv()
65 hd->he.h_length = INET6_ADDR_LEN; in gethostent_resolv()
73 hd->he.h_addr_list = hd->addr; in gethostent_resolv()
78 hd->he.h_name = ch; in gethostent_resolv()
87 hd->he.h_aliases = hd->aliases; in gethostent_resolv()
134 return &(hd->he); in gethostent()
/third_party/ffmpeg/libavcodec/
H A Dutvideoenc.c328 static void calculate_codes(HuffEntry *he) in calculate_codes() argument
333 qsort(he, 256, sizeof(*he), ut_huff_cmp_len); in calculate_codes()
336 while (he[last].len == 255 && last) in calculate_codes()
341 he[i].code = code >> (32 - he[i].len); in calculate_codes()
342 code += 0x80000000u >> (he[i].len - 1); in calculate_codes()
345 qsort(he, 256, sizeof(*he), huff_cmp_sym); in calculate_codes()
350 int width, int height, HuffEntry *he) in write_huff_codes()
349 write_huff_codes(uint8_t *src, uint8_t *dst, int dst_size, int width, int height, HuffEntry *he) write_huff_codes() argument
387 HuffEntry he[256]; encode_plane() local
[all...]
H A Dmagicyuvenc.c70 HuffEntry he[4][256]; member
252 static void calculate_codes(HuffEntry *he, uint16_t codes_count[33]) in calculate_codes() argument
261 he[i].code = codes_count[he[i].len]; in calculate_codes()
262 codes_count[he[i].len]++; in calculate_codes()
357 PutBitContext *pb, HuffEntry *he) in encode_table()
370 magy_huffman_compute_bits(counts, he, codes_counts, 256, 12); in encode_table()
372 calculate_codes(he, codes_counts); in encode_table()
376 put_bits(pb, 7, he[i].len); in encode_table()
383 int width, int height, HuffEntry *he, in in encode_slice()
355 encode_table(AVCodecContext *avctx, uint8_t *dst, int width, int height, PutBitContext *pb, HuffEntry *he) encode_table() argument
382 encode_slice(uint8_t *src, uint8_t *dst, int dst_size, int width, int height, HuffEntry *he, int prediction) encode_slice() argument
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_phi_builder.c189 struct hash_entry *he = NULL; in nir_phi_builder_value_get_block_def() local
192 he = _mesa_hash_table_search(&val->ht, INDEX_TO_KEY(dom->index)); in nir_phi_builder_value_get_block_def()
193 if (he != NULL) in nir_phi_builder_value_get_block_def()
199 /* Exactly one of (he != NULL) and (dom == NULL) must be true. */ in nir_phi_builder_value_get_block_def()
200 assert((he != NULL) != (dom == NULL)); in nir_phi_builder_value_get_block_def()
215 } else if (he->data == NEEDS_PHI) { in nir_phi_builder_value_get_block_def()
240 he->data = def; in nir_phi_builder_value_get_block_def()
246 def = (struct nir_ssa_def *) he->data; in nir_phi_builder_value_get_block_def()
/third_party/mesa3d/src/util/tests/
H A Dset_test.cpp57 set_foreach(s, he) { in TEST()
65 set_foreach_remove(s, he) { in TEST()
66 EXPECT_TRUE(he->key == a || he->key == b); in TEST()
71 set_foreach(s, he) { in TEST()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_kopper.c144 hash_table_foreach(cswap->presents, he) { in destroy_swapchain()
145 struct util_dynarray *arr = he->data; in destroy_swapchain()
174 struct hash_entry *he = NULL; in find_dt_entry() local
178 he = _mesa_hash_table_search_pre_hashed(&screen->dts, cdt->info.xcb.window, (void*)(uintptr_t)cdt->info.xcb.window); in find_dt_entry()
183 he = _mesa_hash_table_search(&screen->dts, cdt->info.wl.surface); in find_dt_entry()
188 he = _mesa_hash_table_search(&screen->dts, cdt->info.win32.hwnd); in find_dt_entry()
194 return he; in find_dt_entry()
203 struct hash_entry *he = find_dt_entry(screen, cdt); in zink_kopper_deinit_displaytarget() local
204 assert(he); in zink_kopper_deinit_displaytarget()
206 cdt = he in zink_kopper_deinit_displaytarget()
362 struct hash_entry *he = NULL; zink_kopper_displaytarget_create() local
690 struct hash_entry *he = _mesa_hash_table_search(swapchain->presents, kopper_present() local
706 struct hash_entry *he = _mesa_hash_table_search(swapchain->presents, (void*)(uintptr_t)next); kopper_present() local
[all...]
H A Dzink_framebuffer.c39 hash_table_foreach(&fb->objects, he) { in zink_destroy_framebuffer()
41 VKSCR(DestroyFramebuffer)(screen->dev, he->data, NULL); in zink_destroy_framebuffer()
43 VkFramebuffer *ptr = he->data; in zink_destroy_framebuffer()
61 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(&fb->objects, hash, rp); in zink_init_framebuffer() local
62 if (he) { in zink_init_framebuffer()
64 ret = (VkFramebuffer)he->data; in zink_init_framebuffer()
66 VkFramebuffer *ptr = he->data; in zink_init_framebuffer()
H A Dzink_descriptors.c450 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(&ctx->desc_set_layouts[type], hash, &key); in zink_descriptor_util_layout_get() local
451 if (he) { in zink_descriptor_util_layout_get()
452 *layout_key = (void*)he->key; in zink_descriptor_util_layout_get()
453 return he->data; in zink_descriptor_util_layout_get()
501 struct set_entry *he = _mesa_set_search_pre_hashed(&ctx->desc_pool_keys[type], hash, &key); in zink_descriptor_util_pool_key_get() local
502 if (he) in zink_descriptor_util_pool_key_get()
503 return (void*)he->key; in zink_descriptor_util_pool_key_get()
595 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(ctx->dd->descriptor_pools[type], hash, pool_key); in descriptor_pool_get() local
596 if (he) { in descriptor_pool_get()
597 struct zink_descriptor_pool *pool = he in descriptor_pool_get()
769 punt_invalid_set(struct zink_descriptor_set *zds, struct hash_entry *he) punt_invalid_set() argument
827 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(pool->free_desc_sets, hash, &key); zink_descriptor_set_get() local
851 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(pool->desc_sets, hash, &key); zink_descriptor_set_get() local
954 struct hash_entry *he = _mesa_hash_table_search_pre_hashed(pool->desc_sets, zds->hash, &zds->key); zink_descriptor_set_recycle() local
[all...]
/third_party/curl/tests/server/
H A Dresolve.c144 struct hostent *he; in main() local
146 he = gethostbyname(host); in main()
148 rc = !he; in main()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dneighbor_db.c142 int ht, int vht, int he) in hostapd_get_nr_chan_width()
146 if (!ht && !vht && !he) in hostapd_get_nr_chan_width()
150 if ((!vht && !he) || oper_chwidth == CHANWIDTH_USE_HT) in hostapd_get_nr_chan_width()
169 int he = hapd->iconf->ieee80211ax; in hostapd_neighbor_set_own_report() local
215 width = hostapd_get_nr_chan_width(hapd, ht, vht, he); in hostapd_neighbor_set_own_report()
141 hostapd_get_nr_chan_width(struct hostapd_data *hapd, int ht, int vht, int he) hostapd_get_nr_chan_width() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dneighbor_db.c200 int ht, int vht, int he) in hostapd_get_nr_chan_width()
204 if (!ht && !vht && !he) in hostapd_get_nr_chan_width()
208 if ((!vht && !he) || oper_chwidth == CHANWIDTH_USE_HT) in hostapd_get_nr_chan_width()
227 int he = hapd->iconf->ieee80211ax && !hapd->conf->disable_11ax; in hostapd_neighbor_set_own_report() local
263 if (he) in hostapd_neighbor_set_own_report()
275 width = hostapd_get_nr_chan_width(hapd, ht, vht, he); in hostapd_neighbor_set_own_report()
199 hostapd_get_nr_chan_width(struct hostapd_data *hapd, int ht, int vht, int he) hostapd_get_nr_chan_width() argument
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dtranslate_math.js11 const he = require('he');
28 return katex.renderToString( he.decode(g1, {'strict': true}), {displayMode: delim.display, output: 'html', strict: true} );
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DListFormatterTest.java303 String [] he = { "he", "he_IL", "iw", "iw_IL" }; in TestContextual()
329 { he, Type.AND, "a, b \u05D5-c", "a", "b", "c" }, in TestContextual()
330 { he, Type.AND, "a \u05D5-b", "a", "b" }, in TestContextual()
331 { he, Type.AND, "1, 2 \u05D5-3", "1", "2", "3" }, in TestContextual()
332 { he, Type.AND, "1 \u05D5-2", "1", "2" }, in TestContextual()
333 { he, Type.AND, "\u05D0\u05D4\u05D1\u05D4 \u05D5\u05DE\u05E7\u05D5\u05D5\u05D4", in TestContextual()
335 { he, Type.AND, "\u05D0\u05D4\u05D1\u05D4, \u05DE\u05E7\u05D5\u05D5\u05D4 \u05D5\u05D0\u05DE\u05D5\u05E0\u05D4", in TestContextual()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DListFormatterTest.java379 String [] he = { "he", "he_IL", "iw", "iw_IL" }; in TestContextual()
405 { he, Type.AND, "a, b \u05D5-c", "a", "b", "c" }, in TestContextual()
406 { he, Type.AND, "a \u05D5-b", "a", "b" }, in TestContextual()
407 { he, Type.AND, "1, 2 \u05D5-3", "1", "2", "3" }, in TestContextual()
408 { he, Type.AND, "1 \u05D5-2", "1", "2" }, in TestContextual()
409 { he, Type.AND, "\u05D0\u05D4\u05D1\u05D4 \u05D5\u05DE\u05E7\u05D5\u05D5\u05D4", in TestContextual()
411 { he, Type.AND, "\u05D0\u05D4\u05D1\u05D4, \u05DE\u05E7\u05D5\u05D5\u05D4 \u05D5\u05D0\u05DE\u05D5\u05E0\u05D4", in TestContextual()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dxmlparser.cpp655 const UHashElement *he=fNames.find(s); in intern() local
656 if(he!=nullptr) { in intern()
658 return (const UnicodeString *)he->key.pointer; in intern()
662 he=fNames.find(s); in intern()
663 return (const UnicodeString *)he->key.pointer; in intern()
669 const UHashElement *he=fNames.find(s); in findName() local
670 if(he!=nullptr) { in findName()
672 return (const UnicodeString *)he->key.pointer; in findName()
/third_party/icu/icu4c/source/tools/toolutil/
H A Dxmlparser.cpp655 const UHashElement *he=fNames.find(s); in intern() local
656 if(he!=NULL) { in intern()
658 return (const UnicodeString *)he->key.pointer; in intern()
662 he=fNames.find(s); in intern()
663 return (const UnicodeString *)he->key.pointer; in intern()
669 const UHashElement *he=fNames.find(s); in findName() local
670 if(he!=NULL) { in findName()
672 return (const UnicodeString *)he->key.pointer; in findName()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbio_addr.c744 const struct hostent *he; in BIO_lookup_ex() local
791 he = &he_fallback; in BIO_lookup_ex()
807 he = gethostbyname(host); in BIO_lookup_ex()
809 if (he == NULL) { in BIO_lookup_ex()
909 for(addrlistp = he->h_addr_list; *addrlistp != NULL; in BIO_lookup_ex()
913 for(addresses = addrlistp - he->h_addr_list; in BIO_lookup_ex()
915 if (!addrinfo_wrap(he->h_addrtype, socktype, in BIO_lookup_ex()
916 *addrlistp, he->h_length, in BIO_lookup_ex()
/third_party/openssl/crypto/bio/
H A Dbio_addr.c744 const struct hostent *he; in BIO_lookup_ex() local
791 he = &he_fallback; in BIO_lookup_ex()
807 he = gethostbyname(host); in BIO_lookup_ex()
809 if (he == NULL) { in BIO_lookup_ex()
909 for(addrlistp = he->h_addr_list; *addrlistp != NULL; in BIO_lookup_ex()
913 for(addresses = addrlistp - he->h_addr_list; in BIO_lookup_ex()
915 if (!addrinfo_wrap(he->h_addrtype, socktype, in BIO_lookup_ex()
916 *addrlistp, he->h_length, in BIO_lookup_ex()

Completed in 17 milliseconds

12345