/third_party/mbedtls/programs/ssl/ |
D | ssl_client2.c | 565 } opt; variable 589 if (opt.debug_level == 0) { in my_verify() 619 if (opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) { in report_cid_usage() 642 if (opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED) { in report_cid_usage() 895 opt.server_name = DFL_SERVER_NAME; in main() 896 opt.server_addr = DFL_SERVER_ADDR; in main() 897 opt.server_port = DFL_SERVER_PORT; in main() 898 opt.debug_level = DFL_DEBUG_LEVEL; in main() 899 opt.cid_enabled = DFL_CID_ENABLED; in main() 900 opt.cid_val = DFL_CID_VALUE; in main() [all …]
|
D | ssl_server2.c | 713 } opt; variable 1345 if (opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) { in report_cid_usage() 1359 if (opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED) { in report_cid_usage() 1425 switch (opt.dummy_ticket % 11) { in dummy_ticket_parse() 1671 opt.buffer_size = DFL_IO_BUF_LEN; in main() 1672 opt.server_addr = DFL_SERVER_ADDR; in main() 1673 opt.server_port = DFL_SERVER_PORT; in main() 1674 opt.debug_level = DFL_DEBUG_LEVEL; in main() 1675 opt.event = DFL_EVENT; in main() 1676 opt.response_size = DFL_RESPONSE_SIZE; in main() [all …]
|
/third_party/spirv-tools/source/fuzz/ |
D | fuzzer_util.h | 40 using ModuleSupplier = std::function<std::unique_ptr<opt::IRContext>()>; 49 std::unique_ptr<spvtools::opt::IRContext>* ir_context); 52 bool IsFreshId(opt::IRContext* context, uint32_t id); 56 void UpdateModuleIdBound(opt::IRContext* context, uint32_t id); 60 opt::BasicBlock* MaybeFindBlock(opt::IRContext* context, 69 opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, 77 opt::Instruction CreateUnreachableEdgeInstruction(opt::IRContext* ir_context, 91 opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, 98 bool BlockIsBackEdge(opt::IRContext* context, uint32_t block_id, 103 bool BlockIsInLoopContinueConstruct(opt::IRContext* context, uint32_t block_id, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | fuzzer_util.h | 40 using ModuleSupplier = std::function<std::unique_ptr<opt::IRContext>()>; 49 std::unique_ptr<spvtools::opt::IRContext>* ir_context); 52 bool IsFreshId(opt::IRContext* context, uint32_t id); 56 void UpdateModuleIdBound(opt::IRContext* context, uint32_t id); 60 opt::BasicBlock* MaybeFindBlock(opt::IRContext* context, 69 opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, 77 opt::Instruction CreateUnreachableEdgeInstruction(opt::IRContext* ir_context, 91 opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, 98 bool BlockIsBackEdge(opt::IRContext* context, uint32_t block_id, 103 bool BlockIsInLoopContinueConstruct(opt::IRContext* context, uint32_t block_id, [all …]
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
D | fuzzer_util.h | 40 using ModuleSupplier = std::function<std::unique_ptr<opt::IRContext>()>; 49 std::unique_ptr<spvtools::opt::IRContext>* ir_context); 52 bool IsFreshId(opt::IRContext* context, uint32_t id); 56 void UpdateModuleIdBound(opt::IRContext* context, uint32_t id); 60 opt::BasicBlock* MaybeFindBlock(opt::IRContext* context, 69 opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, 77 opt::Instruction CreateUnreachableEdgeInstruction(opt::IRContext* ir_context, 91 opt::IRContext* context, opt::BasicBlock* bb_from, opt::BasicBlock* bb_to, 98 bool BlockIsBackEdge(opt::IRContext* context, uint32_t block_id, 103 bool BlockIsInLoopContinueConstruct(opt::IRContext* context, uint32_t block_id, [all …]
|
/third_party/toybox/tests/ |
D | dd.test | 9 opt="2>/dev/null" 14 testing "count=2" "dd if=input count=2 ibs=1 $opt" "hi" "high\n" "" 15 testing "count= 2" "dd if=input 'count= 2' ibs=1 $opt" "hi" "high\n" "" 16 toyonly testing "count=0x2" "dd if=input 'count=0x2' ibs=1 $opt" "hi" \ 20 testing "if=(file)" "dd if=input $opt" "I WANT\n" "I WANT\n" "" 21 testing "of=(file)" "dd of=file $opt && cat file" "I WANT\n" "" "I WANT\n" 22 testing "if=file of=file" "dd if=input of=foo $opt && cat foo && rm -f foo" \ 24 testing "if=file | dd of=file" "dd if=input $opt | dd of=foo $opt && 26 testing "(stdout)" "dd $opt" "I WANT\n" "" "I WANT\n" 28 "dd if=input of=outFile seek=8860 bs=1M conv=sync,noerror $opt && [all …]
|
/third_party/ffmpeg/libswscale/x86/ |
D | swscale.c | 184 #define YUV2YUVX_FUNC_MMX(opt, step) \ argument 185 void ff_yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, int srcOffset, \ 188 static void yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, \ 193 … ff_yuv2yuvX_ ##opt(filter, filterSize - 1, 0, dest - offset, dstW + offset, dither, offset); \ 197 #define YUV2YUVX_FUNC(opt, step) \ argument 198 void ff_yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, int srcOffset, \ 201 static void yuv2yuvX_ ##opt(const int16_t *filter, int filterSize, \ 212 …ff_yuv2yuvX_ ##opt(filter, filterSize - 1, 0, dest - offset, pixelsProcessed + offset, dither, off… 232 #define SCALE_FUNC(filter_n, from_bpc, to_bpc, opt) \ argument 233 void ff_hscale ## from_bpc ## to ## to_bpc ## _ ## filter_n ## _ ## opt( \ [all …]
|
/third_party/mbedtls/programs/x509/ |
D | cert_write.c | 207 } opt; variable 220 if (opt.format == FORMAT_DER) { in write_certificate() 338 opt.issuer_crt = DFL_ISSUER_CRT; in main() 339 opt.request_file = DFL_REQUEST_FILE; in main() 340 opt.subject_key = DFL_SUBJECT_KEY; in main() 341 opt.issuer_key = DFL_ISSUER_KEY; in main() 342 opt.subject_pwd = DFL_SUBJECT_PWD; in main() 343 opt.issuer_pwd = DFL_ISSUER_PWD; in main() 344 opt.output_file = DFL_OUTPUT_FILENAME; in main() 345 opt.subject_name = DFL_SUBJECT_NAME; in main() [all …]
|
D | cert_req.c | 115 } opt; variable 187 opt.filename = DFL_FILENAME; in main() 188 opt.password = DFL_PASSWORD; in main() 189 opt.debug_level = DFL_DEBUG_LEVEL; in main() 190 opt.output_file = DFL_OUTPUT_FILENAME; in main() 191 opt.subject_name = DFL_SUBJECT_NAME; in main() 192 opt.key_usage = DFL_KEY_USAGE; in main() 193 opt.force_key_usage = DFL_FORCE_KEY_USAGE; in main() 194 opt.ns_cert_type = DFL_NS_CERT_TYPE; in main() 195 opt.force_ns_cert_type = DFL_FORCE_NS_CERT_TYPE; in main() [all …]
|
/third_party/spirv-tools/source/opt/ |
D | BUILD.gn | 30 "//third_party/spirv-tools/source/opt/aggressive_dead_code_elim_pass.cpp", 31 "//third_party/spirv-tools/source/opt/amd_ext_to_khr.cpp", 32 "//third_party/spirv-tools/source/opt/basic_block.cpp", 33 "//third_party/spirv-tools/source/opt/block_merge_pass.cpp", 34 "//third_party/spirv-tools/source/opt/block_merge_util.cpp", 35 "//third_party/spirv-tools/source/opt/build_module.cpp", 36 "//third_party/spirv-tools/source/opt/ccp_pass.cpp", 37 "//third_party/spirv-tools/source/opt/cfg.cpp", 38 "//third_party/spirv-tools/source/opt/cfg_cleanup_pass.cpp", 39 "//third_party/spirv-tools/source/opt/code_sink.cpp", [all …]
|
/third_party/cups-filters/filter/foomatic-rip/ |
D | options.c | 249 static void free_option(option_t *opt) in free_option() argument 255 free(opt->custom_command); in free_option() 256 free(opt->proto); in free_option() 258 while (opt->valuelist) { in free_option() 259 value = opt->valuelist; in free_option() 260 opt->valuelist = opt->valuelist->next; in free_option() 263 while (opt->choicelist) { in free_option() 264 choice = opt->choicelist; in free_option() 265 opt->choicelist = opt->choicelist->next; in free_option() 268 while (opt->paramlist) { in free_option() [all …]
|
/third_party/popt/src/ |
D | popthelp.c | 140 getTableTranslationDomain(const struct poptOption *opt) in getTableTranslationDomain() argument 142 if (opt != NULL) in getTableTranslationDomain() 143 for (; opt->longName || opt->shortName || opt->arg; opt++) { in getTableTranslationDomain() 144 if (opt->argInfo == POPT_ARG_INTL_DOMAIN) in getTableTranslationDomain() 145 return opt->arg; in getTableTranslationDomain() 155 getArgDescrip(const struct poptOption * opt, in getArgDescrip() argument 159 if (!poptArgType(opt)) return NULL; in getArgDescrip() 161 if (poptArgType(opt) == POPT_ARG_MAINCALL) in getArgDescrip() 162 return opt->argDescrip; in getArgDescrip() 163 if (poptArgType(opt) == POPT_ARG_ARGV) in getArgDescrip() [all …]
|
/third_party/spirv-tools/ |
D | Android.mk | 79 source/opt/aggressive_dead_code_elim_pass.cpp \ 80 source/opt/amd_ext_to_khr.cpp \ 81 source/opt/basic_block.cpp \ 82 source/opt/block_merge_pass.cpp \ 83 source/opt/block_merge_util.cpp \ 84 source/opt/build_module.cpp \ 85 source/opt/cfg.cpp \ 86 source/opt/cfg_cleanup_pass.cpp \ 87 source/opt/ccp_pass.cpp \ 88 source/opt/code_sink.cpp \ [all …]
|
/third_party/skia/third_party/externals/spirv-tools/ |
D | Android.mk | 76 source/opt/aggressive_dead_code_elim_pass.cpp \ 77 source/opt/amd_ext_to_khr.cpp \ 78 source/opt/basic_block.cpp \ 79 source/opt/block_merge_pass.cpp \ 80 source/opt/block_merge_util.cpp \ 81 source/opt/build_module.cpp \ 82 source/opt/cfg.cpp \ 83 source/opt/cfg_cleanup_pass.cpp \ 84 source/opt/ccp_pass.cpp \ 85 source/opt/code_sink.cpp \ [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | assignmentCompatWithObjectMembersOptionality.types | 23 opt?: Base 24 >opt : Base 29 var a: { opt?: Base; } 30 >a : { opt?: Base; } 31 >opt : Base 33 var b: typeof a = { opt: new Base() } 34 >b : { opt?: Base; } 35 >a : { opt?: Base; } 36 >{ opt: new Base() } : { opt: Base; } 37 >opt : Base [all …]
|
D | assignmentCompatWithObjectMembersOptionality2.types | 24 opt?: Base 25 >opt : Base 30 var a: { opt?: Base; } 31 >a : { opt?: Base; } 32 >opt : Base 34 var b: typeof a = { opt: new Base() } 35 >b : { opt?: Base; } 36 >a : { opt?: Base; } 37 >{ opt: new Base() } : { opt: Base; } 38 >opt : Base [all …]
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | vp8dsp.h | 24 #define VP8_LF_Y(hv, inner, opt) \ argument 25 void ff_vp8_##hv##_loop_filter16##inner##_##opt(uint8_t *dst, \ 30 #define VP8_LF_UV(hv, inner, opt) \ argument 31 void ff_vp8_##hv##_loop_filter8uv##inner##_##opt(uint8_t *dstU, \ 37 #define VP8_LF_SIMPLE(hv, opt) \ argument 38 void ff_vp8_##hv##_loop_filter16_simple_##opt(uint8_t *dst, \ 42 #define VP8_LF_HV(inner, opt) \ argument 43 VP8_LF_Y(h, inner, opt); \ 44 VP8_LF_Y(v, inner, opt); \ 45 VP8_LF_UV(h, inner, opt); \ [all …]
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp9dsp_init.h | 34 #define decl_fpel_func(avg, sz, bpp, opt) \ argument 35 void ff_vp9_##avg##sz##bpp##_##opt(uint8_t *dst, ptrdiff_t dst_stride, \ 39 #define decl_mc_func(avg, sz, dir, opt, type, f_sz, bpp) \ argument 40 void ff_vp9_##avg##_8tap_1d_##dir##_##sz##_##bpp##_##opt(uint8_t *dst, ptrdiff_t dst_stride, \ 44 #define decl_mc_funcs(sz, opt, type, fsz, bpp) \ argument 45 decl_mc_func(put, sz, h, opt, type, fsz, bpp); \ 46 decl_mc_func(avg, sz, h, opt, type, fsz, bpp); \ 47 decl_mc_func(put, sz, v, opt, type, fsz, bpp); \ 48 decl_mc_func(avg, sz, v, opt, type, fsz, bpp) 50 #define decl_ipred_fn(type, sz, bpp, opt) \ argument [all …]
|
/third_party/ffmpeg/libavcodec/arm/ |
D | vp8dsp.h | 29 #define VP8_LF_Y(hv, inner, opt) \ argument 30 void ff_vp8_##hv##_loop_filter16##inner##_##opt(uint8_t *dst, \ 35 #define VP8_LF_UV(hv, inner, opt) \ argument 36 void ff_vp8_##hv##_loop_filter8uv##inner##_##opt(uint8_t *dstU, \ 42 #define VP8_LF_SIMPLE(hv, opt) \ argument 43 void ff_vp8_##hv##_loop_filter16_simple_##opt(uint8_t *dst, \ 47 #define VP8_LF_HV(inner, opt) \ argument 48 VP8_LF_Y(h, inner, opt); \ 49 VP8_LF_Y(v, inner, opt); \ 50 VP8_LF_UV(h, inner, opt); \ [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | upgrade_memory_model_test.cpp | 24 using UpgradeMemoryModelTest = opt::PassTest<::testing::Test>; 34 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 47 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 60 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 76 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 100 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 124 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 151 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 178 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 204 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() [all …]
|
/third_party/spirv-tools/test/opt/ |
D | upgrade_memory_model_test.cpp | 24 using UpgradeMemoryModelTest = opt::PassTest<::testing::Test>; 34 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 47 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 60 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 76 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 100 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 124 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 151 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 178 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 204 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() [all …]
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
D | upgrade_memory_model_test.cpp | 24 using UpgradeMemoryModelTest = opt::PassTest<::testing::Test>; 34 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 47 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 60 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 76 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 100 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 124 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 151 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 178 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() 204 SinglePassRunAndMatch<opt::UpgradeMemoryModel>(text, true); in TEST_F() [all …]
|
/third_party/mbedtls/programs/test/ |
D | udp_proxy.c | 175 } opt; variable 194 opt.server_addr = DFL_SERVER_ADDR; in get_options() 195 opt.server_port = DFL_SERVER_PORT; in get_options() 196 opt.listen_addr = DFL_LISTEN_ADDR; in get_options() 197 opt.listen_port = DFL_LISTEN_PORT; in get_options() 198 opt.pack = DFL_PACK; in get_options() 201 opt.delay_cli_cnt = 0; in get_options() 202 opt.delay_srv_cnt = 0; in get_options() 203 memset(opt.delay_cli, 0, sizeof(opt.delay_cli)); in get_options() 204 memset(opt.delay_srv, 0, sizeof(opt.delay_srv)); in get_options() [all …]
|
/third_party/python/Lib/ |
D | getopt.py | 44 opt = '' variable in GetoptError 46 def __init__(self, msg, opt=''): argument 48 self.opt = opt 49 Exception.__init__(self, msg, opt) 149 def do_longs(opts, opt, longopts, args): argument 151 i = opt.index('=') 155 opt, optarg = opt[:i], opt[i+1:] 157 has_arg, opt = long_has_args(opt, longopts) 161 raise GetoptError(_('option --%s requires argument') % opt, opt) 164 raise GetoptError(_('option --%s must not have an argument') % opt, opt) [all …]
|
/third_party/libcoap/src/ |
D | coap_option.c | 41 coap_opt_parse(const coap_opt_t *opt, size_t length, coap_option_t *result) { in coap_opt_parse() argument 43 const coap_opt_t *opt_start = opt; /* store where parsing starts */ in coap_opt_parse() 45 assert(opt); in coap_opt_parse() 51 result->delta = (*opt & 0xf0) >> 4; in coap_opt_parse() 52 result->length = *opt & 0x0f; in coap_opt_parse() 56 if (*opt != COAP_PAYLOAD_START) { in coap_opt_parse() 64 ADVANCE_OPT_CHECK(opt,length,1); in coap_opt_parse() 65 result->delta = ((*opt & 0xff) << 8) + 269; in coap_opt_parse() 72 ADVANCE_OPT_CHECK(opt,length,1); in coap_opt_parse() 73 result->delta += *opt & 0xff; in coap_opt_parse() [all …]
|