/third_party/mbedtls/tests/scripts/ |
D | gen_ctr_drbg.pl | 39 sub get_val($) subroutine 71 my $Count = get_val("COUNT"); 72 my $EntropyInput = get_val("EntropyInput"); 73 my $Nonce = get_val("Nonce"); 74 my $PersonalizationString = get_val("PersonalizationString"); 75 my $AdditionalInput1 = get_val("AdditionalInput"); 76 my $EntropyInputPR1 = get_val("EntropyInputPR") if ($PredictionResistance == 1); 77 my $EntropyInputReseed = get_val("EntropyInputReseed") if ($PredictionResistance == 0); 78 … my $AdditionalInputReseed = get_val("AdditionalInputReseed") if ($PredictionResistance == 0); 79 my $AdditionalInput2 = get_val("AdditionalInput"); [all …]
|
D | gen_gcm_encrypt.pl | 42 sub get_val($) subroutine 71 my $Count = get_val("Count"); 72 my $key = get_val("Key"); 73 my $pt = get_val("PT"); 74 my $add = get_val("AAD"); 75 my $iv = get_val("IV"); 76 my $ct = get_val("CT"); 77 my $tag = get_val("Tag");
|
D | gen_pkcs1_v21_sign_verify.pl | 24 sub get_val($$) subroutine 59 $val_n = get_val("RSA modulus n", "N"); 60 $val_e = get_val("RSA public exponent e", "E"); 61 $val_p = get_val("Prime p", "P"); 62 $val_q = get_val("Prime q", "Q"); 66 my $val_m = get_val("Message to be", "M"); 67 my $val_salt = get_val("Salt", "Salt"); 68 my $val_sig = get_val("Signature", "Sig");
|
D | gen_gcm_decrypt.pl | 42 sub get_val($) subroutine 88 my $Count = get_val("Count"); 89 my $key = get_val("Key"); 90 my $iv = get_val("IV"); 91 my $ct = get_val("CT"); 92 my $add = get_val("AAD"); 93 my $tag = get_val("Tag");
|
/third_party/ltp/testcases/kernel/syscalls/prctl/ |
D | prctl03.c | 36 int get_val; in check_get_subreaper() local 38 TEST(prctl(PR_GET_CHILD_SUBREAPER, &get_val)); in check_get_subreaper() 44 if (get_val == exp_val) { in check_get_subreaper() 46 get_val); in check_get_subreaper() 49 get_val, exp_val); in check_get_subreaper()
|
/third_party/ltp/testcases/lib/ |
D | tst_checkpoint.c | 22 static int get_val(const char *name, const char *arg, unsigned int *val) in get_val() function 60 if (get_val("NR_WAKE", argv[4], &nr_wake)) in main() 68 if (get_val("TIMEOUT", argv[2], &timeout) in main() 69 || get_val("ID", argv[3], &id)) { in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
D | vsscanf.c | 60 char get_val[100]; in vsscanf_0200() local 61 int result = get_return_vaule("value 123 info", "%s %s", &buffer, &get_val); in vsscanf_0200() 68 if (strcmp(get_val, "123") != 0) { in vsscanf_0200() 69 t_error("%s vsscanf get is %s are not 123\n", __func__, get_val); in vsscanf_0200()
|
/third_party/boost/libs/optional/test/ |
D | optional_test_map.cpp | 57 int get_val(MoveOnly m) in get_val() function 65 verify_type<optional<int> >(boost::move(om).map(get_val)); in test_map_move_only() 66 optional<int> oi = boost::move(om2).map(get_val); in test_map_move_only() 70 optional<int> oj = makeOptMoveOnly(4).map(get_val); in test_map_move_only() 75 optional<int> oi_ = boost::move(o_).map(get_val); in test_map_move_only()
|
D | optional_test_flat_map.cpp | 234 optional<int> get_val(MoveOnly m) in get_val() function 243 verify_type<optional<int> >(boost::move(om).flat_map(get_val)); in test_flat_map_move_only() 244 optional<int> oi = boost::move(om2).flat_map(get_val); in test_flat_map_move_only() 249 optional<int> oj = makeOptMoveOnly(4).flat_map(get_val); in test_flat_map_move_only() 254 optional<int> oj = optional<MoveOnly>().flat_map(get_val); in test_flat_map_move_only()
|
/third_party/boost/boost/fusion/container/map/detail/ |
D | map_impl.hpp | 52 void get_val(); 64 using rest_type::get_val; 128 mpl::identity<value_type> get_val(mpl::identity<key_type>) const; 130 pair_type get_val(mpl::int_<index>) const;
|
D | value_at_key_impl.hpp | 28 boost::declval<Sequence>().get_val(mpl::identity<Key>())
|
D | value_at_impl.hpp | 31 decltype(boost::declval<Sequence>().get_val(index()))
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | lang.c | 83 get_val (const gchar ** names, const gchar ** vals, const gchar * name) in get_val() function 105 c1 = get_val (attr_names, attr_vals, "iso_639_1_code"); in parse_start_element() 111 c2t = get_val (attr_names, attr_vals, "iso_639_2T_code"); in parse_start_element() 112 c2b = get_val (attr_names, attr_vals, "iso_639_2B_code"); in parse_start_element() 113 name = get_val (attr_names, attr_vals, "name"); in parse_start_element()
|
/third_party/boost/boost/fusion/container/map/ |
D | map_iterator.hpp | 44 decltype(boost::declval<sequence>().get_val(index())) 54 decltype(boost::declval<sequence>().get_val(index()).second)
|
/third_party/ffmpeg/libavcodec/ |
D | get_bits.h | 259 static inline uint64_t get_val(GetBitContext *s, unsigned n, int is_le) in get_val() function 396 tmp = get_val(s, n, 1); in get_bits() 398 tmp = get_val(s, n, 0); in get_bits() 430 return get_val(s, n, 1); in get_bits_le() 509 return get_val(s, 1, 1); in get_bits1() 511 return get_val(s, 1, 0); in get_bits1()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | xml-utils.c | 192 static char * get_val(struct xml_node_ctx *ctx, xml_node_t *node) in get_val() function 248 val = get_val(ctx, node); in node_to_tnds()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
D | xml-utils.c | 192 static char * get_val(struct xml_node_ctx *ctx, xml_node_t *node) in get_val() function 248 val = get_val(ctx, node); in node_to_tnds()
|
/third_party/flatbuffers/src/ |
D | idl_gen_java.cpp | 531 auto get_val = GenGetterForLookupByKey(key_field, "bb"); in GenLookupKeyGetter() local 533 key_getter += get_val + ";\n"; in GenLookupKeyGetter()
|
D | idl_gen_kotlin.cpp | 580 auto get_val = GenLookupByKey(key_field, "bb"); in GenerateLookupByKey() local 581 writer += "val value = " + get_val + cast; in GenerateLookupByKey()
|
D | idl_gen_csharp.cpp | 499 auto get_val = GenGetterForLookupByKey(key_field, "bb"); in GenLookupKeyGetter() local 500 key_getter += "int comp = " + get_val + ".CompareTo(key);\n"; in GenLookupKeyGetter()
|
/third_party/boost/boost/container/ |
D | vector.hpp | 225 BOOST_CONTAINER_FORCEINLINE reference get_val() in get_val() function 2240 …construct(this->m_holder.alloc(), begin_ptr + pos + insertions_left - 1, position_value.get_val()); in priv_insert_ordered_at() 2258 begin_ptr[pos + insertions_left - 1] = position_value.get_val(); in priv_insert_ordered_at()
|