Searched refs:group (Results 26 - 50 of 1472) sorted by relevance

1234567891011>>

/external/chromium_org/tools/memory_inspector/memory_inspector/backends/
H A Dmemdump_parser.py68 start = int(m.group(1), 16)
69 end = int(m.group(2), 16) - 1 # end addr is inclusive in memdump output.
77 prot_flags=m.group(3),
78 mapped_file=m.group(10),
79 mapped_offset=int(m.group(4), 16))
80 entry.priv_dirty_bytes = int(m.group(5))
81 entry.priv_clean_bytes = int(m.group(6)) - entry.priv_dirty_bytes
82 entry.shared_dirty_bytes = int(m.group(8))
83 entry.shared_clean_bytes = int(m.group(9)) - entry.shared_dirty_bytes
84 entry.resident_pages = [ord(c) for c in base64.b64decode(m.group(1
[all...]
/external/chromium_org/build/android/pylib/utils/
H A Dreraiser_thread_unittest.py51 group = reraiser_thread.ReraiserThreadGroup(
53 group.StartAll()
54 group.JoinAll()
63 group = reraiser_thread.ReraiserThreadGroup()
65 group.Add(reraiser_thread.ReraiserThread(f, args=[i]))
66 group.StartAll()
67 group.JoinAll()
74 group = reraiser_thread.ReraiserThreadGroup(
76 group.StartAll()
78 group
[all...]
H A Dapk_helper.py28 return m.group(1)
53 if not m.group(1) in node:
54 node[m.group(1)] = {}
55 node_stack += [node[m.group(1)]]
60 if not m.group(1) in node:
61 node[m.group(1)] = []
62 node[m.group(1)].append(m.group(2))
/external/openssl/crypto/ec/
H A Dec2_smpl.c137 int ec_GF2m_simple_group_init(EC_GROUP *group) argument
139 BN_init(&group->field);
140 BN_init(&group->a);
141 BN_init(&group->b);
149 void ec_GF2m_simple_group_finish(EC_GROUP *group) argument
151 BN_free(&group->field);
152 BN_free(&group->a);
153 BN_free(&group->b);
160 void ec_GF2m_simple_group_clear_finish(EC_GROUP *group) argument
162 BN_clear_free(&group
198 ec_GF2m_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
231 ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
258 ec_GF2m_simple_group_get_degree(const EC_GROUP *group) argument
267 ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
348 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
359 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
386 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
421 ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
523 ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
529 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
541 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
551 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
606 ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
651 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
687 ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
701 ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
708 ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
715 ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
[all...]
H A Dec_check.c59 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx) argument
79 if (!EC_GROUP_check_discriminant(group, ctx))
86 if (group->generator == NULL)
91 if (!EC_POINT_is_on_curve(group, group->generator, ctx))
98 if ((point = EC_POINT_new(group)) == NULL) goto err;
99 if (!EC_GROUP_get_order(group, order, ctx)) goto err;
106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err;
107 if (!EC_POINT_is_at_infinity(group, point))
H A Decp_oct.c70 int ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
102 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err;
103 if (group->meth->field_decode == 0)
106 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) goto err;
107 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) goto err;
111 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx)) goto err;
112 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) goto err;
116 if (group
199 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
325 ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dec2_oct.c91 int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
117 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err;
120 if (!BN_GF2m_mod_sqrt_arr(y, &group->b, group->poly, ctx)) goto err;
124 if (!group->meth->field_sqr(group, tmp, x, ctx)) goto err;
125 if (!group->meth->field_div(group, tmp, &group->b, tmp, ctx)) goto err;
126 if (!BN_GF2m_add(tmp, &group
165 ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
297 ec_GF2m_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dectest.c116 static void timings(EC_GROUP *group, int type, BN_CTX *ctx)
127 fprintf(stdout, "Timings for %d-bit field, ", EC_GROUP_get_degree(group));
128 if (!EC_GROUP_get_order(group, s, ctx)) ABORT;
132 P = EC_POINT_new(group);
134 EC_POINT_copy(P, EC_GROUP_get0_generator(group));
152 if (!EC_POINT_mul(group, P, (type != TIMING_RAND_PT) ? r[i] : NULL,
195 /* test multiplication with group order, long and negative scalars */
196 static void group_order_tests(EC_GROUP *group) argument
199 EC_POINT *P = EC_POINT_new(group);
200 EC_POINT *Q = EC_POINT_new(group);
278 EC_GROUP *group; local
822 EC_GROUP *group; local
1276 EC_GROUP *group = NULL; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Doct.c76 static size_t ec_GFp_simple_point2oct(const EC_GROUP *group, argument
93 if (EC_POINT_is_at_infinity(group, point)) {
107 field_len = BN_num_bytes(&group->field);
131 if (!EC_POINT_get_affine_coordinates_GFp(group, point, x, y, ctx))
195 static int ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, argument
229 return EC_POINT_set_to_infinity(group, point);
232 field_len = BN_num_bytes(&group->field);
255 if (BN_ucmp(x, &group->field) >= 0) {
261 if (!EC_POINT_set_compressed_coordinates_GFp(group, point, x, y_bit, ctx))
266 if (BN_ucmp(y, &group
296 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const uint8_t *buf, size_t len, BN_CTX *ctx) argument
315 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, uint8_t *buf, size_t len, BN_CTX *ctx) argument
335 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
475 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
[all...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dslice_group_test.js17 var group = new SliceGroup();
18 assertEquals(group.openSliceCount, 0);
19 var sliceA = group.beginSlice('', 'a', 1, {a: 1});
20 assertEquals(1, group.openSliceCount);
25 var sliceB = group.endSlice(3);
31 var group = new SliceGroup();
32 assertEquals(group.openSliceCount, 0);
33 group.beginSlice('', 'a', 1);
34 group.beginSlice('', 'b', 2);
35 group
[all...]
/external/chromium_org/chrome/browser/guest_view/web_view/
H A Dcontext_menu_content_type_web_view.cc21 bool ContextMenuContentTypeWebView::SupportsGroup(int group) { argument
22 switch (group) {
49 return ContextMenuContentType::SupportsGroup(group);
52 return ContextMenuContentType::SupportsGroup(group);
/external/e2fsprogs/lib/ext2fs/
H A Dalloc_stats.c20 int group = ext2fs_group_of_ino(fs, ino); local
33 ext2fs_bg_free_inodes_count_set(fs, group, ext2fs_bg_free_inodes_count(fs, group) - inuse);
35 ext2fs_bg_used_dirs_count_set(fs, group, ext2fs_bg_used_dirs_count(fs, group) + inuse);
39 ext2fs_bg_flags_clear(fs, group, EXT2_BG_INODE_UNINIT);
43 ext2fs_bg_itable_unused(fs, group) +
44 group * fs->super->s_inodes_per_group + 1;
47 ext2fs_bg_itable_unused_set(fs, group, group * f
63 int group = ext2fs_group_of_blk2(fs, blk); local
[all...]
H A Dblknum.c17 * Return the group # of a block
26 * Return the first block (inclusive) in a group
28 blk64_t ext2fs_group_first_block2(ext2_filsys fs, dgrp_t group) argument
31 ((blk64_t)group * fs->super->s_blocks_per_group);
35 * Return the last block (inclusive) in a group
37 blk64_t ext2fs_group_last_block2(ext2_filsys fs, dgrp_t group) argument
39 return (group == fs->group_desc_count - 1 ?
41 ext2fs_group_first_block2(fs, group) +
46 * Return the number of blocks in a group
48 int ext2fs_group_blocks_count(ext2_filsys fs, dgrp_t group) argument
185 ext2fs_group_desc(ext2_filsys fs, struct opaque_ext2_group_desc *gdp, dgrp_t group) argument
194 ext4fs_group_desc(ext2_filsys fs, struct opaque_ext2_group_desc *gdp, dgrp_t group) argument
204 ext2fs_block_bitmap_loc(ext2_filsys fs, dgrp_t group) argument
218 ext2fs_block_bitmap_loc_set(ext2_filsys fs, dgrp_t group, blk64_t blk) argument
231 ext2fs_inode_bitmap_loc(ext2_filsys fs, dgrp_t group) argument
245 ext2fs_inode_bitmap_loc_set(ext2_filsys fs, dgrp_t group, blk64_t blk) argument
258 ext2fs_inode_table_loc(ext2_filsys fs, dgrp_t group) argument
272 ext2fs_inode_table_loc_set(ext2_filsys fs, dgrp_t group, blk64_t blk) argument
285 ext2fs_bg_free_blocks_count(ext2_filsys fs, dgrp_t group) argument
299 ext2fs_bg_free_blocks_count_set(ext2_filsys fs, dgrp_t group, __u32 n) argument
313 ext2fs_bg_free_inodes_count(ext2_filsys fs, dgrp_t group) argument
327 ext2fs_bg_free_inodes_count_set(ext2_filsys fs, dgrp_t group, __u32 n) argument
340 ext2fs_bg_used_dirs_count(ext2_filsys fs, dgrp_t group) argument
354 ext2fs_bg_used_dirs_count_set(ext2_filsys fs, dgrp_t group, __u32 n) argument
367 ext2fs_bg_itable_unused(ext2_filsys fs, dgrp_t group) argument
381 ext2fs_bg_itable_unused_set(ext2_filsys fs, dgrp_t group, __u32 n) argument
394 ext2fs_bg_flags(ext2_filsys fs, dgrp_t group) argument
405 ext2fs_bg_flags_zap(ext2_filsys fs, dgrp_t group) argument
417 ext2fs_bg_flags_test(ext2_filsys fs, dgrp_t group, __u16 bg_flag) argument
428 ext2fs_bg_flags_set(ext2_filsys fs, dgrp_t group, __u16 bg_flags) argument
440 ext2fs_bg_flags_clear(ext2_filsys fs, dgrp_t group, __u16 bg_flags) argument
452 ext2fs_bg_checksum(ext2_filsys fs, dgrp_t group) argument
463 ext2fs_bg_checksum_set(ext2_filsys fs, dgrp_t group, __u16 checksum) argument
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_type_unittest.cc15 EXPECT_EQ(NO_GROUP, none.group());
20 EXPECT_EQ(NO_GROUP, unknown.group());
22 // Type with group but no subgroup.
25 EXPECT_EQ(NAME, first.group());
27 // Type with group and subgroup.
30 EXPECT_EQ(PHONE_HOME, phone.group());
35 EXPECT_EQ(ADDRESS_BILLING, billing_address.group());
40 EXPECT_EQ(NAME_BILLING, last.group());
45 EXPECT_EQ(NO_GROUP, boundary.group());
50 EXPECT_EQ(NO_GROUP, beyond.group());
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/
H A Ddepend.stg2 group depend;
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
H A Dantlr.stg34 group antlr;
H A Dgnu.stg34 group gnu;
H A Dvs2005.stg34 group antlr;
/external/chromium_org/sync/test/engine/
H A Dfake_model_worker.cc9 FakeModelWorker::FakeModelWorker(ModelSafeGroup group) argument
11 group_(group) {}
/external/chromium_org/tools/gyp/test/win/
H A Dgyptest-link-base-address.py33 if not exe_match or not exe_match.group(1):
35 if exe_match.group(1) != '420000':
41 if not dll_match or not dll_match.group(1):
43 if dll_match.group(1) != '10420000':
49 if not default_exe_match or not default_exe_match.group(1):
51 if default_exe_match.group(1) != '400000':
57 if not default_dll_match or not default_dll_match.group(1):
59 if default_dll_match.group(1) != '10000000':
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwpa-psk-tkip.conf10 group=TKIP
/external/chromium_org/components/variations/
H A Dactive_field_trials.h15 // The Unique ID of a trial and its active group, where the name and group
16 // identifiers are hashes of the trial and group name strings.
19 uint32 group; member in struct:variations::ActiveGroupId
22 // Returns an ActiveGroupId struct for the given trial and group names.
30 // The group and name fields are just SHA-1 Hashes, so we just need to treat
31 // them as IDs and do a less-than comparison. We test group first, since
33 if (lhs.group != rhs.group)
34 return lhs.group < rh
[all...]
/external/chromium_org/tools/grit/grit/tool/
H A Dtoolbar_preprocess.py46 line = '%s//' % mm.group(1)
55 line = '%s_%s_%s%s' % (mo.group(1), mo.group(2), mo.group(3), mo.group(4))
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DHex.java35 public static String encodeHex(byte[] data, int group) { argument
37 char[] out = new char[(l << 1) + (group > 0 ? (l / group) : 0)];
40 if ((group > 0) && ((i % group) == 0) && j > 0) {
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dec.h107 /* EC_GROUP_free frees |group| and the data that it points to. */
108 OPENSSL_EXPORT void EC_GROUP_free(EC_GROUP *group);
118 /* EC_GROUP_cmp returns one if |a| and |b| are the same group and zero
123 * in |group| that specifies the generator for the group. */
124 OPENSSL_EXPORT const EC_POINT *EC_GROUP_get0_generator(const EC_GROUP *group);
126 /* EC_GROUP_get_order sets |*order| to the order of |group| using |ctx|, if
128 OPENSSL_EXPORT int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order,
131 /* EC_GROUP_get_cofactor sets |*cofactor| to the cofactor of |group| using
133 OPENSSL_EXPORT int EC_GROUP_get_cofactor(const EC_GROUP *group,
[all...]

Completed in 2092 milliseconds

1234567891011>>