| /external/boringssl/src/crypto/fipsmodule/ec/ |
| D | ec.c | 103 static void ec_group_set_a_minus3(EC_GROUP *group) { in ec_group_set_a_minus3() 274 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, in EC_GROUP_set_generator() 347 void EC_GROUP_free(EC_GROUP *group) { in EC_GROUP_free() 369 EC_GROUP *group = (EC_GROUP *)a; in EC_GROUP_dup() local 400 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group) { in EC_GROUP_get0_generator() 404 const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group) { in EC_GROUP_get0_order() 409 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) { in EC_GROUP_get_order() 416 int EC_GROUP_order_bits(const EC_GROUP *group) { in EC_GROUP_order_bits() 420 int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, in EC_GROUP_get_cofactor() 426 int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p, BIGNUM *out_a, in EC_GROUP_get_curve_GFp() [all …]
|
| D | scalar.c | 24 int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_bignum_to_scalar() 38 int ec_scalar_equal_vartime(const EC_GROUP *group, const EC_SCALAR *a, in ec_scalar_equal_vartime() 44 int ec_scalar_is_zero(const EC_GROUP *group, const EC_SCALAR *a) { in ec_scalar_is_zero() 52 int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_random_nonzero_scalar() 58 void ec_scalar_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_scalar_to_bytes() 65 int ec_scalar_from_bytes(const EC_GROUP *group, EC_SCALAR *out, in ec_scalar_from_bytes() 82 void ec_scalar_reduce(const EC_GROUP *group, EC_SCALAR *out, in ec_scalar_reduce() 91 void ec_scalar_add(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, in ec_scalar_add() 99 void ec_scalar_sub(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, in ec_scalar_sub() 107 void ec_scalar_neg(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a) { in ec_scalar_neg() [all …]
|
| D | felem.c | 26 const EC_FELEM *ec_felem_one(const EC_GROUP *group) { in ec_felem_one() 31 int ec_bignum_to_felem(const EC_GROUP *group, EC_FELEM *out, const BIGNUM *in) { in ec_bignum_to_felem() 44 int ec_felem_to_bignum(const EC_GROUP *group, BIGNUM *out, const EC_FELEM *in) { in ec_felem_to_bignum() 51 void ec_felem_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_felem_to_bytes() 56 int ec_felem_from_bytes(const EC_GROUP *group, EC_FELEM *out, const uint8_t *in, in ec_felem_from_bytes() 61 void ec_felem_neg(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a) { in ec_felem_neg() 73 void ec_felem_add(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a, in ec_felem_add() 80 void ec_felem_sub(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a, in ec_felem_sub() 87 BN_ULONG ec_felem_non_zero_mask(const EC_GROUP *group, const EC_FELEM *a) { in ec_felem_non_zero_mask() 95 void ec_felem_select(const EC_GROUP *group, EC_FELEM *out, BN_ULONG mask, in ec_felem_select() [all …]
|
| D | ec_montgomery.c | 79 static void ec_GFp_mont_felem_to_montgomery(const EC_GROUP *group, in ec_GFp_mont_felem_to_montgomery() 85 static void ec_GFp_mont_felem_from_montgomery(const EC_GROUP *group, in ec_GFp_mont_felem_from_montgomery() 92 static void ec_GFp_mont_felem_inv0(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_inv0() 98 void ec_GFp_mont_felem_mul(const EC_GROUP *group, EC_FELEM *r, in ec_GFp_mont_felem_mul() 104 void ec_GFp_mont_felem_sqr(const EC_GROUP *group, EC_FELEM *r, in ec_GFp_mont_felem_sqr() 110 void ec_GFp_mont_felem_to_bytes(const EC_GROUP *group, uint8_t *out, in ec_GFp_mont_felem_to_bytes() 117 int ec_GFp_mont_felem_from_bytes(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_from_bytes() 127 void ec_GFp_mont_felem_reduce(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_reduce() 138 void ec_GFp_mont_felem_exp(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_exp() 145 static int ec_GFp_mont_point_get_affine_coordinates(const EC_GROUP *group, in ec_GFp_mont_point_get_affine_coordinates() [all …]
|
| D | simple.c | 91 int ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_simple_group_set_curve() 129 int ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, in ec_GFp_simple_group_get_curve() 151 void ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, in ec_GFp_simple_point_set_to_infinity() 158 void ec_GFp_simple_invert(const EC_GROUP *group, EC_JACOBIAN *point) { in ec_GFp_simple_invert() 162 int ec_GFp_simple_is_at_infinity(const EC_GROUP *group, in ec_GFp_simple_is_at_infinity() 167 int ec_GFp_simple_is_on_curve(const EC_GROUP *group, in ec_GFp_simple_is_on_curve() 224 int ec_GFp_simple_points_equal(const EC_GROUP *group, const EC_JACOBIAN *a, in ec_GFp_simple_points_equal() 271 int ec_affine_jacobian_equal(const EC_GROUP *group, const EC_AFFINE *a, in ec_affine_jacobian_equal() 301 int ec_GFp_simple_cmp_x_coordinate(const EC_GROUP *group, const EC_JACOBIAN *p, in ec_GFp_simple_cmp_x_coordinate() 314 void ec_GFp_simple_felem_to_bytes(const EC_GROUP *group, uint8_t *out, in ec_GFp_simple_felem_to_bytes() [all …]
|
| /external/cronet/third_party/boringssl/src/crypto/fipsmodule/ec/ |
| D | ec.c | 103 static void ec_group_set_a_minus3(EC_GROUP *group) { in ec_group_set_a_minus3() 274 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, in EC_GROUP_set_generator() 347 void EC_GROUP_free(EC_GROUP *group) { in EC_GROUP_free() 369 EC_GROUP *group = (EC_GROUP *)a; in EC_GROUP_dup() local 400 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group) { in EC_GROUP_get0_generator() 404 const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group) { in EC_GROUP_get0_order() 409 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) { in EC_GROUP_get_order() 416 int EC_GROUP_order_bits(const EC_GROUP *group) { in EC_GROUP_order_bits() 420 int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, in EC_GROUP_get_cofactor() 426 int EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p, BIGNUM *out_a, in EC_GROUP_get_curve_GFp() [all …]
|
| D | scalar.c | 24 int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_bignum_to_scalar() 34 int ec_scalar_equal_vartime(const EC_GROUP *group, const EC_SCALAR *a, in ec_scalar_equal_vartime() 40 int ec_scalar_is_zero(const EC_GROUP *group, const EC_SCALAR *a) { in ec_scalar_is_zero() 48 int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_random_nonzero_scalar() 54 void ec_scalar_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_scalar_to_bytes() 61 int ec_scalar_from_bytes(const EC_GROUP *group, EC_SCALAR *out, in ec_scalar_from_bytes() 78 void ec_scalar_reduce(const EC_GROUP *group, EC_SCALAR *out, in ec_scalar_reduce() 87 void ec_scalar_add(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, in ec_scalar_add() 95 void ec_scalar_sub(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, in ec_scalar_sub() 103 void ec_scalar_neg(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a) { in ec_scalar_neg() [all …]
|
| D | felem.c | 26 const EC_FELEM *ec_felem_one(const EC_GROUP *group) { in ec_felem_one() 31 int ec_bignum_to_felem(const EC_GROUP *group, EC_FELEM *out, const BIGNUM *in) { in ec_bignum_to_felem() 44 int ec_felem_to_bignum(const EC_GROUP *group, BIGNUM *out, const EC_FELEM *in) { in ec_felem_to_bignum() 51 void ec_felem_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_felem_to_bytes() 56 int ec_felem_from_bytes(const EC_GROUP *group, EC_FELEM *out, const uint8_t *in, in ec_felem_from_bytes() 61 void ec_felem_neg(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a) { in ec_felem_neg() 73 void ec_felem_add(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a, in ec_felem_add() 80 void ec_felem_sub(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a, in ec_felem_sub() 87 BN_ULONG ec_felem_non_zero_mask(const EC_GROUP *group, const EC_FELEM *a) { in ec_felem_non_zero_mask() 95 void ec_felem_select(const EC_GROUP *group, EC_FELEM *out, BN_ULONG mask, in ec_felem_select() [all …]
|
| D | ec_montgomery.c | 79 static void ec_GFp_mont_felem_to_montgomery(const EC_GROUP *group, in ec_GFp_mont_felem_to_montgomery() 85 static void ec_GFp_mont_felem_from_montgomery(const EC_GROUP *group, in ec_GFp_mont_felem_from_montgomery() 92 static void ec_GFp_mont_felem_inv0(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_inv0() 98 void ec_GFp_mont_felem_mul(const EC_GROUP *group, EC_FELEM *r, in ec_GFp_mont_felem_mul() 104 void ec_GFp_mont_felem_sqr(const EC_GROUP *group, EC_FELEM *r, in ec_GFp_mont_felem_sqr() 110 void ec_GFp_mont_felem_to_bytes(const EC_GROUP *group, uint8_t *out, in ec_GFp_mont_felem_to_bytes() 117 int ec_GFp_mont_felem_from_bytes(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_from_bytes() 127 void ec_GFp_mont_felem_reduce(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_reduce() 138 void ec_GFp_mont_felem_exp(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_exp() 145 static int ec_GFp_mont_point_get_affine_coordinates(const EC_GROUP *group, in ec_GFp_mont_point_get_affine_coordinates() [all …]
|
| /external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/ec/ |
| D | scalar.c | 24 int ec_bignum_to_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_bignum_to_scalar() 34 int ec_scalar_equal_vartime(const EC_GROUP *group, const EC_SCALAR *a, in ec_scalar_equal_vartime() 40 int ec_scalar_is_zero(const EC_GROUP *group, const EC_SCALAR *a) { in ec_scalar_is_zero() 48 int ec_random_nonzero_scalar(const EC_GROUP *group, EC_SCALAR *out, in ec_random_nonzero_scalar() 54 void ec_scalar_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_scalar_to_bytes() 63 int ec_scalar_from_bytes(const EC_GROUP *group, EC_SCALAR *out, in ec_scalar_from_bytes() 84 void ec_scalar_reduce(const EC_GROUP *group, EC_SCALAR *out, in ec_scalar_reduce() 93 void ec_scalar_add(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, in ec_scalar_add() 101 void ec_scalar_sub(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a, in ec_scalar_sub() 109 void ec_scalar_neg(const EC_GROUP *group, EC_SCALAR *r, const EC_SCALAR *a) { in ec_scalar_neg() [all …]
|
| D | ec.c | 304 static int ec_group_set_generator(EC_GROUP *group, const EC_AFFINE *generator, in ec_group_set_generator() 390 int EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, in EC_GROUP_set_generator() 443 EC_GROUP *group = NULL; in ec_group_new_from_data() local 553 void EC_GROUP_free(EC_GROUP *group) { in EC_GROUP_free() 581 EC_GROUP *group = (EC_GROUP *)a; in EC_GROUP_dup() local 613 const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group) { in EC_GROUP_get0_generator() 617 const BIGNUM *EC_GROUP_get0_order(const EC_GROUP *group) { in EC_GROUP_get0_order() 622 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) { in EC_GROUP_get_order() 629 int EC_GROUP_order_bits(const EC_GROUP *group) { in EC_GROUP_order_bits() 633 int EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, in EC_GROUP_get_cofactor() [all …]
|
| D | felem.c | 26 int ec_bignum_to_felem(const EC_GROUP *group, EC_FELEM *out, const BIGNUM *in) { in ec_bignum_to_felem() 40 int ec_felem_to_bignum(const EC_GROUP *group, BIGNUM *out, const EC_FELEM *in) { in ec_felem_to_bignum() 47 void ec_felem_to_bytes(const EC_GROUP *group, uint8_t *out, size_t *out_len, in ec_felem_to_bytes() 52 int ec_felem_from_bytes(const EC_GROUP *group, EC_FELEM *out, const uint8_t *in, in ec_felem_from_bytes() 57 void ec_felem_neg(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a) { in ec_felem_neg() 69 void ec_felem_add(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a, in ec_felem_add() 76 void ec_felem_sub(const EC_GROUP *group, EC_FELEM *out, const EC_FELEM *a, in ec_felem_sub() 83 BN_ULONG ec_felem_non_zero_mask(const EC_GROUP *group, const EC_FELEM *a) { in ec_felem_non_zero_mask() 91 void ec_felem_select(const EC_GROUP *group, EC_FELEM *out, BN_ULONG mask, in ec_felem_select() 96 int ec_felem_equal(const EC_GROUP *group, const EC_FELEM *a, in ec_felem_equal()
|
| D | ec_montgomery.c | 79 int ec_GFp_mont_group_init(EC_GROUP *group) { in ec_GFp_mont_group_init() 87 void ec_GFp_mont_group_finish(EC_GROUP *group) { in ec_GFp_mont_group_finish() 93 int ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_mont_group_set_curve() 111 static void ec_GFp_mont_felem_to_montgomery(const EC_GROUP *group, in ec_GFp_mont_felem_to_montgomery() 117 static void ec_GFp_mont_felem_from_montgomery(const EC_GROUP *group, in ec_GFp_mont_felem_from_montgomery() 124 static void ec_GFp_mont_felem_inv0(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_inv0() 130 void ec_GFp_mont_felem_mul(const EC_GROUP *group, EC_FELEM *r, in ec_GFp_mont_felem_mul() 136 void ec_GFp_mont_felem_sqr(const EC_GROUP *group, EC_FELEM *r, in ec_GFp_mont_felem_sqr() 142 void ec_GFp_mont_felem_to_bytes(const EC_GROUP *group, uint8_t *out, in ec_GFp_mont_felem_to_bytes() 149 int ec_GFp_mont_felem_from_bytes(const EC_GROUP *group, EC_FELEM *out, in ec_GFp_mont_felem_from_bytes() [all …]
|
| D | simple.c | 91 int ec_GFp_simple_group_init(EC_GROUP *group) { in ec_GFp_simple_group_init() 97 void ec_GFp_simple_group_finish(EC_GROUP *group) { in ec_GFp_simple_group_finish() 101 int ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, in ec_GFp_simple_group_set_curve() 145 int ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, in ec_GFp_simple_group_get_curve() 167 void ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, in ec_GFp_simple_point_set_to_infinity() 174 void ec_GFp_simple_invert(const EC_GROUP *group, EC_RAW_POINT *point) { in ec_GFp_simple_invert() 178 int ec_GFp_simple_is_at_infinity(const EC_GROUP *group, in ec_GFp_simple_is_at_infinity() 183 int ec_GFp_simple_is_on_curve(const EC_GROUP *group, in ec_GFp_simple_is_on_curve() 240 int ec_GFp_simple_points_equal(const EC_GROUP *group, const EC_RAW_POINT *a, in ec_GFp_simple_points_equal() 287 int ec_affine_jacobian_equal(const EC_GROUP *group, const EC_AFFINE *a, in ec_affine_jacobian_equal() [all …]
|
| /external/e2fsprogs/lib/ext2fs/ |
| D | blknum.c | 29 blk64_t ext2fs_group_first_block2(ext2_filsys fs, dgrp_t group) in ext2fs_group_first_block2() 38 blk64_t ext2fs_group_last_block2(ext2_filsys fs, dgrp_t group) in ext2fs_group_last_block2() 49 int ext2fs_group_blocks_count(ext2_filsys fs, dgrp_t group) in ext2fs_group_blocks_count() 202 dgrp_t group) in ext2fs_group_desc() 245 dgrp_t group) in ext4fs_group_desc() 253 __u32 ext2fs_block_bitmap_checksum(ext2_filsys fs, dgrp_t group) in ext2fs_block_bitmap_checksum() 268 blk64_t ext2fs_block_bitmap_loc(ext2_filsys fs, dgrp_t group) in ext2fs_block_bitmap_loc() 281 void ext2fs_block_bitmap_loc_set(ext2_filsys fs, dgrp_t group, blk64_t blk) in ext2fs_block_bitmap_loc_set() 294 __u32 ext2fs_inode_bitmap_checksum(ext2_filsys fs, dgrp_t group) in ext2fs_inode_bitmap_checksum() 309 blk64_t ext2fs_inode_bitmap_loc(ext2_filsys fs, dgrp_t group) in ext2fs_inode_bitmap_loc() [all …]
|
| /external/wpa_supplicant_8/src/p2p/ |
| D | p2p_group.c | 49 struct p2p_group *group, **groups; in p2p_group_init() local 84 static void p2p_group_free_members(struct p2p_group *group) in p2p_group_free_members() 98 void p2p_group_deinit(struct p2p_group *group) in p2p_group_deinit() 137 static void p2p_group_add_common_ies(struct p2p_group *group, in p2p_group_add_common_ies() 208 static struct wpabuf * p2p_group_build_beacon_ie(struct p2p_group *group) in p2p_group_build_beacon_ie() 354 wifi_display_build_go_ie(struct p2p_group *group) in wifi_display_build_go_ie() 405 static void wifi_display_group_update(struct p2p_group *group) in wifi_display_group_update() 414 void p2p_buf_add_group_info(struct p2p_group *group, struct wpabuf *buf, in p2p_buf_add_group_info() 436 void p2p_group_buf_add_id(struct p2p_group *group, struct wpabuf *buf) in p2p_group_buf_add_id() 443 static struct wpabuf * p2p_group_build_probe_resp_ie(struct p2p_group *group) in p2p_group_build_probe_resp_ie() [all …]
|
| /external/guava/guava/ |
| D | module.json | 4 "group": "${pom.groupId}", string 30 "group": "com.google.guava", string 37 "group": "com.google.guava", string 44 "group": "com.google.code.findbugs", string 51 "group": "org.checkerframework", string 58 "group": "com.google.errorprone", string 65 "group": "com.google.j2objc", string 80 "group": "com.google.guava", string 85 "group": "com.google.collections", string 103 "group": "com.google.guava", string [all …]
|
| /external/google-cloud-java/java-monitoring/proto-google-cloud-monitoring-v3/src/main/java/com/google/monitoring/v3/ |
| D | GroupName.java | 44 private final String group; field in GroupName 119 public static GroupName of(String project, String group) { in of() 124 public static GroupName ofProjectGroupName(String project, String group) { in ofProjectGroupName() 129 public static GroupName ofOrganizationGroupName(String organization, String group) { in ofOrganizationGroupName() 134 public static GroupName ofFolderGroupName(String folder, String group) { in ofFolderGroupName() 138 public static String format(String project, String group) { in format() 143 public static String formatProjectGroupName(String project, String group) { in formatProjectGroupName() 148 public static String formatOrganizationGroupName(String organization, String group) { in formatOrganizationGroupName() 157 public static String formatFolderGroupName(String folder, String group) { in formatFolderGroupName() 272 private String group; field in GroupName.Builder [all …]
|
| /external/trusty/musl/include/ |
| D | grp.h | 19 struct group { struct 26 struct group *getgrgid(gid_t); argument
|
| /external/musl/include/ |
| D | grp.h | 19 struct group { struct 26 struct group *getgrgid(gid_t); argument
|
| /external/e2fsprogs/include/mingw/ |
| D | grp.h | 8 struct group struct 10 char *gr_name; 11 char *gr_passwd; 12 __gid_t gr_gid; 13 char **gr_mem;
|
| /external/mesa3d/src/imagination/rogue/passes/ |
| D | rogue_schedule_instr_groups.c | 140 static void rogue_lower_alu_io(rogue_alu_instr *alu, rogue_instr_group *group) in rogue_lower_alu_io() 171 rogue_instr_group *group) in rogue_lower_backend_io() 201 rogue_instr_group *group) in rogue_lower_ctrl_io() 207 rogue_instr_group *group) in rogue_lower_bitwise_io() 238 rogue_instr_group *group) in rogue_lower_instr_group_io() 267 rogue_instr_group *group) in rogue_instr_group_put() 309 rogue_instr_group *group) in rogue_move_instr_to_group() 375 static void rogue_calc_dsts_size(rogue_instr_group *group) in rogue_calc_dsts_size() 419 static void rogue_calc_iss_size(rogue_instr_group *group) in rogue_calc_iss_size() 425 static void rogue_calc_srcs_size(rogue_instr_group *group, bool upper_srcs) in rogue_calc_srcs_size() [all …]
|
| /external/rust/crates/oneshot-uniffi/benches/ |
| D | benches.rs | 13 let mut group = $c.benchmark_group("create_channel"); localVariable 20 let mut group = $c.benchmark_group("create_and_send"); localVariable 30 let mut group = $c.benchmark_group("create_and_send_on_closed"); localVariable 40 let mut group = $c.benchmark_group("create_send_and_recv"); localVariable 51 let mut group = $c.benchmark_group("create_send_and_recv_ref"); localVariable
|
| /external/e2fsprogs/include/nonunix/ |
| D | grp.h | 8 struct group struct 10 char *gr_name; 11 char *gr_passwd; 12 __gid_t gr_gid; 13 char **gr_mem;
|
| /external/rust/crates/half/benches/ |
| D | convert.rs | 8 let mut group = c.benchmark_group("Convert f16 From f32"); in bench_f32_to_f16() localVariable 29 let mut group = c.benchmark_group("Convert f16 From f64"); in bench_f64_to_f16() localVariable 50 let mut group = c.benchmark_group("Convert f16 to f32"); in bench_f16_to_f32() localVariable 71 let mut group = c.benchmark_group("Convert f16 to f64"); in bench_f16_to_f64() localVariable 236 let mut group = c.benchmark_group("Convert bf16 From f32"); in bench_f32_to_bf16() localVariable 257 let mut group = c.benchmark_group("Convert bf16 From f64"); in bench_f64_to_bf16() localVariable 278 let mut group = c.benchmark_group("Convert bf16 to f32"); in bench_bf16_to_f32() localVariable 299 let mut group = c.benchmark_group("Convert bf16 to f64"); in bench_bf16_to_f64() localVariable
|