Searched defs:group (Results 126 - 150 of 290) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/webui/options/
H A Dcontent_settings_handler.cc566 std::string group, setting; local
567 if (!(args->GetString(0, &group) &&
574 ContentSettingsType content_type = ContentSettingsTypeFromGroupName(group);
/external/dropbear/libtomcrypt/testprof/
H A Dx86_prof.c771 int group, modulus; member in struct:__anon5230
785 if ((err = dsa_make_key(&yarrow_prng, find_prng("yarrow"), groups[x].group, groups[x].modulus, &key)) != CRYPT_OK) {
801 fprintf(stderr, "DSA-(%lu, %lu) make_key took %15llu cycles\n", (unsigned long)groups[x].group*8, (unsigned long)groups[x].modulus*8, t2);
/external/e2fsprogs/lib/ext2fs/
H A Dinode.c49 dgrp_t group,
199 dgrp_t group,
257 int group)
259 scan->current_group = group - 1;
260 scan->groups_left = scan->fs->group_desc_count - group;
413 * Do we need to start reading a new block group?
434 * they can be done for block group #0.
525 unsigned long group, block, block_nr, offset; local
565 group = (ino - 1) / EXT2_INODES_PER_GROUP(fs->super);
566 if (group > f
196 ext2fs_set_inode_callback(ext2_inode_scan scan, errcode_t (*done_group)(ext2_filsys fs, ext2_inode_scan scan, dgrp_t group, void * priv_data), void *done_group_data) argument
256 ext2fs_inode_scan_goto_blockgroup(ext2_inode_scan scan, int group) argument
631 unsigned long group, block, block_nr, offset; local
[all...]
/external/harfbuzz_ng/util/
H A Doptions.cc101 GOptionGroup *group G_GNUC_UNUSED,
112 GOptionGroup *group G_GNUC_UNUSED,
128 GOptionGroup *group = g_option_group_new (name, description, help_description, local
130 g_option_group_add_entries (group, entries);
131 g_option_group_set_parse_hooks (group, pre_parse, post_parse);
132 g_option_context_add_group (context, group);
/external/iproute2/include/linux/
H A Dnetlink.h107 __u32 group; member in struct:nl_pktinfo
/external/open-vcdiff/gflags/src/
H A Dgflags_completions.cc144 const set<const CommandLineFlagInfo *> &group,
517 set<const CommandLineFlagInfo *> *group; member in struct:__anon10367::DisplayInfoGroup
520 int size_in_lines = static_cast<int>(group->size()) + 1;
538 // We want to output lines in groups. Each group needs to be indented
544 // nonempty group, there will be ~3 lines of header & footer, plus all
555 DisplayInfoGroup group = local
559 lines_so_far += group.SizeInLines();
560 output_groups.push_back(group);
564 DisplayInfoGroup group = { local
568 lines_so_far += group
573 DisplayInfoGroup group = { local
582 DisplayInfoGroup group = { local
591 DisplayInfoGroup group = { local
603 DisplayInfoGroup group = { local
663 OutputSingleGroupWithLimit( const set<const CommandLineFlagInfo *> &group, const string &line_indentation, const string &header, const string &footer, bool long_output_format, int *remaining_line_limit, size_t *completion_elements_output, vector<string> *completions) argument
[all...]
/external/openssl/crypto/conf/
H A Dconf.h132 char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf,const char *group, variable
134 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf,const char *group, variable
168 char *NCONF_get_string(const CONF *conf,const char *group,const char *name);
169 int NCONF_get_number_e(const CONF *conf,const char *group,const char *name,
176 long NCONF_get_number(CONF *conf,char *group,char *name);
/external/openssl/crypto/ec/
H A Dec_ameth.c70 const EC_GROUP *group; local
72 if (ec_key == NULL || (group = EC_KEY_get0_group(ec_key)) == NULL)
77 if (EC_GROUP_get_asn1_flag(group)
78 && (nid = EC_GROUP_get_curve_name(group)))
158 EC_GROUP *group; local
168 group = EC_GROUP_new_by_curve_name(OBJ_obj2nid(poid));
169 if (group == NULL)
171 EC_GROUP_set_asn1_flag(group, OPENSSL_EC_NAMED_CURVE);
172 if (EC_KEY_set_group(eckey, group) == 0)
174 EC_GROUP_free(group);
229 const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec); local
268 const EC_GROUP *group; local
374 const EC_GROUP *group; local
403 EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec)); local
435 const EC_GROUP *group; local
[all...]
H A Dec_lcl.h161 int (*mul)(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
163 int (*precompute_mult)(EC_GROUP *group, BN_CTX *);
164 int (*have_precompute_mult)(const EC_GROUP *group);
243 EC_GROUP *group; member in struct:ec_key_st
291 * (ec_lib.c uses these as defaults if group->method->mul is 0) */
292 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
294 int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *);
295 int ec_wNAF_have_precompute_mult(const EC_GROUP *group);
396 int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
398 int ec_GF2m_precompute_mult(EC_GROUP *group, BN_CT
[all...]
H A Dec_mult.c83 const EC_GROUP *group; /* parent EC_GROUP object */ member in struct:ec_pre_comp_st
98 static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group) argument
102 if (!group)
111 ret->group = group;
346 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, argument
372 if (group->meth != r->meth)
380 return EC_POINT_set_to_infinity(group, r);
385 if (group->meth != points[i]->meth)
401 generator = EC_GROUP_get0_generator(group);
765 ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
934 ec_wNAF_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_smpl.c137 int ec_GFp_simple_group_init(EC_GROUP *group) argument
139 BN_init(&group->field);
140 BN_init(&group->a);
141 BN_init(&group->b);
142 group->a_is_minus3 = 0;
147 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
149 BN_free(&group->field);
150 BN_free(&group->a);
151 BN_free(&group->b);
155 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
175 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
230 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
281 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
287 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
393 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
401 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
461 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
514 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
528 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
643 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
807 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
924 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
934 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
940 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1031 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1142 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1181 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1351 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1357 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, 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);
242 EC_GROUP *group; local
786 EC_GROUP *group; local
1240 EC_GROUP *group = NULL; local
[all...]
/external/openssl/include/openssl/
H A Dconf.h132 char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf,const char *group, variable
134 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf,const char *group, variable
168 char *NCONF_get_string(const CONF *conf,const char *group,const char *name);
169 int NCONF_get_number_e(const CONF *conf,const char *group,const char *name,
176 long NCONF_get_number(CONF *conf,char *group,char *name);
/external/openssl/ssl/
H A Dd1_srvr.c1152 const EC_GROUP *group; local
1199 if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
1208 (EC_GROUP_get_degree(group) > 163))
1219 tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
1230 encodedlen = EC_POINT_point2oct(group,
1245 encodedlen = EC_POINT_point2oct(group,
/external/oprofile/module/ia64/
H A Dop_pmu.c477 static void free_msr_group(struct op_msr_group * group) argument
479 if (group->addrs)
480 kfree(group->addrs);
481 if (group->saved)
482 kfree(group->saved);
483 group->addrs = NULL;
484 group->saved = NULL;
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUnknownFieldSet.java691 * Get the list of embedded group values for this field. These are
693 * since the group's type is presumably unknown.
695 public List<UnknownFieldSet> getGroupList() { return group; }
724 group};
745 for (final UnknownFieldSet value : group) {
768 for (final UnknownFieldSet value : group) {
804 private List<UnknownFieldSet> group; field in class:UnknownFieldSet.Field
851 if (result.group == null) {
852 result.group = Collections.emptyList();
854 result.group
[all...]
/external/regex-re2/re2/testing/
H A Dre2_test.cc345 StringPiece group[4]; local
350 group, arraysize(group)));
355 group, arraysize(group)));
356 CHECK_EQ(group[0], "chrisr:9000");
357 CHECK_EQ(group[1], "chrisr:9000");
358 CHECK_EQ(group[2], "chrisr");
359 CHECK_EQ(group[3], "9000");
1352 // Opening parentheses annotated with group ID
[all...]
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheHost.cpp58 ASSERT(!m_applicationCache || !m_candidateApplicationCacheGroup || m_applicationCache->group() == m_candidateApplicationCacheGroup);
61 m_applicationCache->group()->disassociateDocumentLoader(m_documentLoader);
135 ApplicationCacheGroup* group = m_candidateApplicationCacheGroup; local
136 if (!group && m_applicationCache) {
141 group = m_applicationCache->group();
144 if (group)
145 group->failedLoadingMainResource(m_documentLoader);
150 ApplicationCacheGroup* group = candidateApplicationCacheGroup(); local
151 if (!group
320 setCandidateApplicationCacheGroup(ApplicationCacheGroup* group) argument
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dmain.c487 " [-g <global ctrl_iface>] [-G <group>] \\\n"
496 " -G group for control interfaces\n"
543 const char *group)
546 struct group *grp;
547 grp = getgrnam(group);
549 wpa_printf(MSG_ERROR, "Unknown group '%s'", group);
542 hostapd_get_ctrl_iface_group(struct hapd_interfaces *interfaces, const char *group) argument
/external/aac/libAACdec/src/
H A Dblock.cpp168 int group; local
176 for (group=0; group < GetWindowGroups(&pAacDecoderChannelInfo->icsInfo); group++)
180 switch (pCodeBook[group*16+band]) {
183 pScaleFactor[group*16+band] = 0;
191 pScaleFactor[group*16+band] = factor - 100;
198 pScaleFactor[group*16+band] = position - 100;
205 CPns_Read( &pAacDecoderChannelInfo->data.aac.PnsData, bs, hcb, pAacDecoderChannelInfo->pDynData->aScaleFactor, pAacDecoderChannelInfo->pDynData->RawDataInfo.GlobalGain, band, group);
220 int groupwin,group; local
279 int group; local
428 int window, group, groupwin, band; local
508 int window,group,groupwin,groupoffset,band; local
[all...]
/external/ceres-solver/internal/ceres/
H A Dsolver_impl.cc542 "But the first elimination group in the ordering is not an "
695 // group, it is equivalent to the user supplying NULL as
724 // one elimination group, then it can happen that after all the
727 // in the first elimination group.
878 // there is only one elimination group, then CreateReducedProgram
879 // guarantees that this group only contains e_blocks. Thus we add a
880 // dummy elimination group with zero blocks in it.
912 const set<double*>& group = group_it->second; local
913 for (set<double*>::const_iterator parameter_block_ptr_it = group.begin();
914 parameter_block_ptr_it != group
[all...]
/external/chromium/chrome/browser/autofill/
H A Dautofill_profile.cc248 switch (AutofillType(type).group()) {
276 switch (AutofillType(type).group()) {
297 AutofillType::FieldTypeGroup group = AutofillType(type).group(); local
298 return group == AutofillType::NAME ||
299 group == AutofillType::EMAIL ||
300 group == AutofillType::PHONE_HOME ||
301 group == AutofillType::PHONE_FAX;
624 switch (AutofillType(type).group()) {
/external/chromium/chrome/browser/ui/gtk/
H A Dinfo_bubble_gtk.cc397 gboolean InfoBubbleGtk::OnGtkAccelerator(GtkAccelGroup* group, argument
438 msg.group = keys[0].group;
H A Dmenu_gtk.cc529 GtkSizeGroup* group = NULL; local
570 if (!group)
571 group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
573 gtk_size_group_add_widget(group, button);
577 if (group) {
578 g_object_unref(group);
/external/e2fsprogs/e2fsck/
H A Djournal.c929 int group, mount_flags; local
1023 group = ext2fs_group_of_ino(fs, ino);
1026 fs->group_desc[group].bg_free_inodes_count++;
1027 ext2fs_group_desc_csum_set(fs, group);

Completed in 1575 milliseconds

1234567891011>>