Home
last modified time | relevance | path

Searched defs:h (Results 1 – 25 of 4468) sorted by relevance

12345678910>>...179

/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/
Dares_dns.h54 #define DNS_HEADER_QID(h) DNS__16BIT(h) argument
55 #define DNS_HEADER_QR(h) (((h)[2] >> 7) & 0x1) argument
56 #define DNS_HEADER_OPCODE(h) (((h)[2] >> 3) & 0xf) argument
57 #define DNS_HEADER_AA(h) (((h)[2] >> 2) & 0x1) argument
58 #define DNS_HEADER_TC(h) (((h)[2] >> 1) & 0x1) argument
59 #define DNS_HEADER_RD(h) ((h)[2] & 0x1) argument
60 #define DNS_HEADER_RA(h) (((h)[3] >> 7) & 0x1) argument
61 #define DNS_HEADER_Z(h) (((h)[3] >> 4) & 0x7) argument
62 #define DNS_HEADER_RCODE(h) ((h)[3] & 0xf) argument
63 #define DNS_HEADER_QDCOUNT(h) DNS__16BIT((h) + 4) argument
[all …]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DStreamHandlerTest.java102 StreamHandler h = new StreamHandler(); in testConstructor_NoParameter_NoProperties() local
128 StreamHandler h = new StreamHandler(); in testConstructor_NoParameter_ValidProperties() local
153 StreamHandler h = new StreamHandler(); in testConstructor_NoParameter_InvalidProperties() local
177 StreamHandler h = new StreamHandler(new ByteArrayOutputStream(), in testConstructor_HasParameters_NoProperties() local
205 StreamHandler h = new StreamHandler(new ByteArrayOutputStream(), in testConstructor_HasParameters_ValidProperties() local
231 StreamHandler h = new StreamHandler(new ByteArrayOutputStream(), in testConstructor_HasParameters_InvalidProperties() local
301 StreamHandler h = new StreamHandler(aos, new MockFormatter()); in testClose_SufficientPrivilege_NormalClose() local
321 StreamHandler h = new StreamHandler(aos, new MockFormatter()); in testClose_SufficientPrivilege_Exception() local
334 StreamHandler h = new StreamHandler(aos, new MockFormatter()); in testClose_SufficientPrivilege_DirectClose() local
350 StreamHandler h = new StreamHandler(); in testClose_NoOutputStream() local
[all …]
DHandlerTest.java73 MockHandler h = new MockHandler(); in testConstructor() local
100 MockHandler h = new MockHandler(); in testConstructor_Properties() local
113 MockHandler h = new MockHandler(); in testClose() local
121 MockHandler h = new MockHandler(); in testFlush() local
129 MockHandler h = new MockHandler(); in testPublish() local
137 MockHandler h = new MockHandler(); in testGetSetEncoding_Normal() local
146 MockHandler h = new MockHandler(); in testGetSetEncoding_Null() local
155 MockHandler h = new MockHandler(); in testGetSetEncoding_Unsupported() local
168 MockHandler h = new MockHandler(); in testGetSetErrorManager_Normal() local
178 MockHandler h = new MockHandler(); in testGetSetErrorManager_Null() local
[all …]
DConsoleHandlerTest.java88 ConsoleHandler h = new ConsoleHandler(); in testConstructor_NoProperties() local
113 ConsoleHandler h = new ConsoleHandler(); in testConstructor_ValidProperties() local
137 ConsoleHandler h = new ConsoleHandler(); in testConstructor_InvalidProperties() local
156 ConsoleHandler h = new ConsoleHandler(); in testClose_SufficientPrivilege_NormalClose() local
176 ConsoleHandler h = new ConsoleHandler(); in testClose_SufficientPrivilege_Exception() local
194 ConsoleHandler h = new ConsoleHandler(); in testClose_SufficientPrivilege_DirectClose() local
212 ConsoleHandler h = new ConsoleHandler(); in testPublish_NoFilter() local
250 ConsoleHandler h = new ConsoleHandler(); in testPublish_AfterResetSystemErr() local
272 ConsoleHandler h = new ConsoleHandler(); in testPublish_WithFilter() local
313 ConsoleHandler h = new ConsoleHandler(); in testPublish_Null() local
[all …]
/external/python/cpython3/Lib/
Dimghdr.py11 def what(file, h=None): argument
37 def test_jpeg(h, f): argument
44 def test_png(h, f): argument
50 def test_gif(h, f): argument
57 def test_tiff(h, f): argument
64 def test_rgb(h, f): argument
71 def test_pbm(h, f): argument
79 def test_pgm(h, f): argument
87 def test_ppm(h, f): argument
95 def test_rast(h, f): argument
[all …]
Dsndhdr.py75 def test_aifc(h, f): argument
96 def test_au(h, f): argument
129 def test_hcom(h, f): argument
142 def test_voc(h, f): argument
156 def test_wav(h, f): argument
172 def test_8svx(h, f): argument
181 def test_sndt(h, f): argument
190 def test_sndr(h, f): argument
/external/python/cpython2/Lib/
Dimghdr.py9 def what(file, h=None): argument
35 def test_jpeg(h, f): argument
42 def test_exif(h, f): argument
49 def test_png(h, f): argument
55 def test_gif(h, f): argument
62 def test_tiff(h, f): argument
69 def test_rgb(h, f): argument
76 def test_pbm(h, f): argument
84 def test_pgm(h, f): argument
92 def test_ppm(h, f): argument
[all …]
Dsndhdr.py58 def test_aifc(h, f): argument
79 def test_au(h, f): argument
108 def test_hcom(h, f): argument
117 def test_voc(h, f): argument
130 def test_wav(h, f): argument
143 def test_8svx(h, f): argument
152 def test_sndt(h, f): argument
161 def test_sndr(h, f): argument
/external/grpc-grpc/test/core/util/
Dhistogram.cc59 static size_t bucket_for_unchecked(grpc_histogram* h, double x) { in bucket_for_unchecked() argument
64 static size_t bucket_for(grpc_histogram* h, double x) { in bucket_for()
71 static double bucket_start(grpc_histogram* h, double x) { in bucket_start()
77 grpc_histogram* h = in grpc_histogram_create() local
97 void grpc_histogram_destroy(grpc_histogram* h) { in grpc_histogram_destroy()
102 void grpc_histogram_add(grpc_histogram* h, double x) { in grpc_histogram_add()
147 static double threshold_for_count_below(grpc_histogram* h, double count_below) { in threshold_for_count_below()
196 double grpc_histogram_percentile(grpc_histogram* h, double percentile) { in grpc_histogram_percentile()
200 double grpc_histogram_mean(grpc_histogram* h) { in grpc_histogram_mean()
205 double grpc_histogram_stddev(grpc_histogram* h) { in grpc_histogram_stddev()
[all …]
/external/marisa-trie/tools/
Dcmdopt.cc10 static void cmdopt_shift(cmdopt_t *h) { in cmdopt_shift()
25 static void cmdopt_next(cmdopt_t *h) { in cmdopt_next()
31 static int cmdopt_check(cmdopt_t *h) { in cmdopt_check()
48 static void cmdopt_getopt(cmdopt_t *h) { in cmdopt_getopt()
65 static int cmdopt_search(cmdopt_t *h) { in cmdopt_search()
120 static int cmdopt_match(cmdopt_t *h) { in cmdopt_match()
151 static void cmdopt_getopt_long(cmdopt_t *h) { in cmdopt_getopt_long()
169 static int cmdopt_search_long(cmdopt_t *h) { in cmdopt_search_long()
207 static int cmdopt_main(cmdopt_t *h) { in cmdopt_main()
242 void cmdopt_init(cmdopt_t *h, int argc, char **argv, in cmdopt_init()
[all …]
/external/libwebsockets/lib/secure-streams/
Dsecure-streams.c76 lws_ss_event_helper(lws_ss_handle_t *h, lws_ss_constate_t cs) in lws_ss_event_helper()
100 lws_ss_handle_t *h = lws_container_of(sul, lws_ss_handle_t, sul); in lws_ss_timeout_sul_check_cb() local
113 lws_ss_handle_t *h = (lws_ss_handle_t *)priv; in lws_ss_exp_cb_metadata() local
146 lws_ss_set_timeout_us(lws_ss_handle_t *h, lws_usec_t us) in lws_ss_set_timeout_us()
157 lws_ss_backoff(lws_ss_handle_t *h) in lws_ss_backoff()
186 lws_ss_client_connect(lws_ss_handle_t *h) in lws_ss_client_connect()
309 lws_ss_handle_t *h; in lws_ss_create() local
449 lws_ss_handle_t *h = *ppss; in lws_ss_destroy() local
489 lws_ss_request_tx(lws_ss_handle_t *h) in lws_ss_request_tx()
511 lws_ss_request_tx_len(lws_ss_handle_t *h, unsigned long len) in lws_ss_request_tx_len()
[all …]
Dsecure-streams-client.c25 lws_sspc_handle_t *h = lws_container_of(sul, lws_sspc_handle_t, sul_retry); in lws_sspc_sul_retry_cb() local
102 lws_sspc_handle_t *h = (lws_sspc_handle_t *)lws_get_opaque_user_data(wsi); in callback_sspc_client() local
329 lws_sspc_handle_t *h; in lws_sspc_create() local
375 lws_sspc_handle_t *h = lws_container_of(d, lws_sspc_handle_t, client_list); in lws_sspc_destroy_dll() local
386 lws_sspc_handle_t *h; in lws_sspc_destroy() local
432 lws_sspc_request_tx(lws_sspc_handle_t *h) in lws_sspc_request_tx()
444 lws_sspc_client_connect(lws_sspc_handle_t *h) in lws_sspc_client_connect()
458 lws_sspc_get_context(struct lws_sspc_handle *h) in lws_sspc_get_context()
464 lws_sspc_rideshare(struct lws_sspc_handle *h) in lws_sspc_rideshare()
495 _lws_sspc_set_metadata(struct lws_sspc_handle *h, const char *name, in _lws_sspc_set_metadata()
[all …]
/external/google-breakpad/src/common/
Ddwarf_line_to_module_unittest.cc48 DwarfLineToModule h(&m, "/", &lines); in TEST() local
69 DwarfLineToModule h(&m, "/", &lines); in TEST() local
129 DwarfLineToModule h(&m, "/", &lines); in TEST() local
147 DwarfLineToModule h(&m, "/", &lines); in TEST() local
165 DwarfLineToModule h(&m, "/", &lines); in TEST() local
178 DwarfLineToModule h(&m, "/", &lines); in TEST() local
191 DwarfLineToModule h(&m, "/", &lines); in TEST() local
206 DwarfLineToModule h(&m, "src/build", &lines); in TEST() local
222 DwarfLineToModule h(&m, "src/build", &lines); in TEST() local
238 DwarfLineToModule h(&m, "src/build", &lines); in TEST() local
[all …]
/external/bc/src/
Dhistory.c432 static void bc_history_enableRaw(BcHistory *h) { in bc_history_enableRaw()
481 static void bc_history_disableRaw(BcHistory *h) { in bc_history_disableRaw()
630 static void bc_history_refresh(BcHistory *h) { in bc_history_refresh()
681 static void bc_history_edit_insert(BcHistory *h, const char *cbuf, size_t clen) in bc_history_edit_insert()
727 static void bc_history_edit_left(BcHistory *h) { in bc_history_edit_left()
739 static void bc_history_edit_right(BcHistory *h) { in bc_history_edit_right()
751 static void bc_history_edit_wordEnd(BcHistory *h) { in bc_history_edit_wordEnd()
766 static void bc_history_edit_wordStart(BcHistory *h) { in bc_history_edit_wordStart()
781 static void bc_history_edit_home(BcHistory *h) { in bc_history_edit_home()
793 static void bc_history_edit_end(BcHistory *h) { in bc_history_edit_end()
[all …]
/external/llvm-project/clang/test/CodeGen/X86/
Dkeylocker.c14 unsigned int test_encodekey128_u32(unsigned int htype, __m128i key, void *h) { in test_encodekey128_u32()
44 unsigned int test_encodekey256_u32(unsigned int htype, __m128i key_lo, __m128i key_hi, void *h) { in test_encodekey256_u32()
78 unsigned char test_mm_aesenc256kl_u8(__m128i *odata, __m128i idata, const void *h) { in test_mm_aesenc256kl_u8()
87 unsigned char test_mm_aesdec256kl_u8(__m128i *odata, __m128i idata, const void *h) { in test_mm_aesdec256kl_u8()
96 unsigned char test_mm_aesenc128kl_u8(__m128i *odata, __m128i idata, const void *h) { in test_mm_aesenc128kl_u8()
105 unsigned char test_mm_aesdec128kl_u8(__m128i *odata, __m128i idata, const void *h) { in test_mm_aesdec128kl_u8()
114 unsigned char test__mm_aesencwide128kl_u8(__m128i odata[8], const __m128i idata[8], const void* h) { in test__mm_aesencwide128kl_u8()
159 unsigned char test__mm_aesdecwide128kl_u8(__m128i odata[8], const __m128i idata[8], const void* h) { in test__mm_aesdecwide128kl_u8()
204 unsigned char test__mm_aesencwide256kl_u8(__m128i odata[8], const __m128i idata[8], const void* h) { in test__mm_aesencwide256kl_u8()
249 unsigned char test__mm_aesdecwide256kl_u8(__m128i odata[8], const __m128i idata[8], const void* h) { in test__mm_aesdecwide256kl_u8()
/external/iptables/iptables/
Dnft-cmd.c17 struct nft_cmd *nft_cmd_new(struct nft_handle *h, int command, in nft_cmd_new()
74 static void nft_cmd_rule_bridge(struct nft_handle *h, const struct nft_cmd *cmd) in nft_cmd_rule_bridge()
92 int nft_cmd_rule_append(struct nft_handle *h, const char *chain, in nft_cmd_rule_append()
108 int nft_cmd_rule_insert(struct nft_handle *h, const char *chain, in nft_cmd_rule_insert()
129 int nft_cmd_rule_delete(struct nft_handle *h, const char *chain, in nft_cmd_rule_delete()
145 int nft_cmd_rule_delete_num(struct nft_handle *h, const char *chain, in nft_cmd_rule_delete_num()
160 int nft_cmd_rule_flush(struct nft_handle *h, const char *chain, in nft_cmd_rule_flush()
178 int nft_cmd_chain_zero_counters(struct nft_handle *h, const char *chain, in nft_cmd_chain_zero_counters()
193 int nft_cmd_chain_user_add(struct nft_handle *h, const char *chain, in nft_cmd_chain_user_add()
208 int nft_cmd_chain_user_del(struct nft_handle *h, const char *chain, in nft_cmd_chain_user_del()
[all …]
Dnft-cache.c47 void nft_cache_level_set(struct nft_handle *h, int level, in nft_cache_level_set()
96 static void mnl_genid_get(struct nft_handle *h, uint32_t *genid) in mnl_genid_get()
115 struct nft_handle *h = data; in nftnl_table_list_cb() local
138 static int fetch_table_cache(struct nft_handle *h) in fetch_table_cache()
177 static struct hlist_head *chain_name_hlist(struct nft_handle *h, in chain_name_hlist()
187 nft_chain_find(struct nft_handle *h, const char *table, const char *chain) in nft_chain_find()
205 int nft_cache_add_chain(struct nft_handle *h, const struct builtin_table *t, in nft_cache_add_chain()
245 struct nft_handle *h; member
253 struct nft_handle *h = d->h; in nftnl_chain_list_cb() local
285 struct nft_handle *h; member
[all …]
Dnft.c64 int mnl_talk(struct nft_handle *h, struct nlmsghdr *nlh, in mnl_talk()
159 static void mnl_set_sndbuffer(struct nft_handle *h) in mnl_set_sndbuffer()
174 static void mnl_set_rcvbuffer(struct nft_handle *h, int numcmds) in mnl_set_rcvbuffer()
189 static ssize_t mnl_nft_socket_sendmsg(struct nft_handle *h, int numcmds) in mnl_nft_socket_sendmsg()
210 static int mnl_batch_talk(struct nft_handle *h, int numcmds) in mnl_batch_talk()
281 static int mnl_append_error(const struct nft_handle *h, in mnl_append_error()
359 static struct obj_update *batch_add(struct nft_handle *h, enum obj_update_type type, void *ptr) in batch_add()
377 batch_table_add(struct nft_handle *h, enum obj_update_type type, in batch_table_add()
384 batch_set_add(struct nft_handle *h, enum obj_update_type type, in batch_set_add()
391 batch_chain_add(struct nft_handle *h, enum obj_update_type type, in batch_chain_add()
[all …]
/external/llvm-project/clang/test/CodeGen/
Dmips-madd4.c7 float madd_s (float f, float g, float h) in madd_s()
15 float msub_s (float f, float g, float h) in msub_s()
23 double madd_d (double f, double g, double h) in madd_d()
31 double msub_d (double f, double g, double h) in msub_d()
40 float nmadd_s (float f, float g, float h) in nmadd_s()
52 float nmsub_s (float f, float g, float h) in nmsub_s()
64 double nmadd_d (double f, double g, double h) in nmadd_d()
76 double nmsub_d (double f, double g, double h) in nmsub_d()
/external/mesa3d/src/gtest/include/gtest/internal/custom/
DREADME.md7 ### The following macros can be defined:
18 ### Flag related macros:
30 ### Logging:
36 ### Threading:
45 ### Underlying library support features
49 ### Exporting API symbols:
/external/googletest/googletest/include/gtest/internal/custom/
DREADME.md7 ### The following macros can be defined:
18 ### Flag related macros:
30 ### Logging:
36 ### Threading:
45 ### Underlying library support features
49 ### Exporting API symbols:
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/custom/
DREADME.md7 ### The following macros can be defined:
18 ### Flag related macros:
30 ### Logging:
36 ### Threading:
45 ### Underlying library support features
49 ### Exporting API symbols:
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/custom/
DREADME.md7 ### The following macros can be defined:
18 ### Flag related macros:
30 ### Logging:
36 ### Threading:
45 ### Underlying library support features
49 ### Exporting API symbols:
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Dhandlers.c36 #define SUBH(h, selector) (h->sub[selector]) argument
39 #define SUBH_F(h, f) SUBH(h, upb_fielddef_index(f)) argument
41 static int32_t trygetsel(upb_handlers *h, const upb_fielddef *f, in trygetsel() argument
54 static upb_selector_t handlers_getsel(upb_handlers *h, const upb_fielddef *f, in handlers_getsel()
61 static const void **returntype(upb_handlers *h, const upb_fielddef *f, in returntype()
66 static bool doset(upb_handlers *h, int32_t sel, const upb_fielddef *f, in doset()
126 const void *effective_closure_type(upb_handlers *h, const upb_fielddef *f, in effective_closure_type()
159 upb_handlers *h; in upb_handlers_new() local
214 bool upb_handlers_setstartmsg(upb_handlers *h, upb_startmsg_handlerfunc *func, in upb_handlers_setstartmsg()
220 bool upb_handlers_setendmsg(upb_handlers *h, upb_endmsg_handlerfunc *func, in upb_handlers_setendmsg()
[all …]
/external/libchrome/base/numerics/
DREADME.md160 ### Safe casting templates
180 ### Other helper and conversion functions
196 ### StrictNumeric<>
230 ### Members
288 ### Non-member helper functions
360 ### Members
386 ### Non-member helper functions

12345678910>>...179