Searched defs:group (Results 151 - 175 of 290) sorted by relevance

1234567891011>>

/external/e2fsprogs/e2fsck/
H A Dpass2.c200 pctx.group = dx_db->parent;
841 int group; local
970 group = ext2fs_group_of_ino(fs, dirent->inode);
971 first_unused_inode = group * fs->super->s_inodes_per_group +
973 fs->group_desc[group].bg_itable_unused;
974 cd->pctx.group = group;
984 if (fs->group_desc[group].bg_flags & EXT2_BG_INODE_UNINIT) {
988 fs->group_desc[group].bg_flags &=
1000 fs->group_desc[group]
[all...]
/external/e2fsprogs/misc/
H A Ddumpe2fs.c74 static void print_free (unsigned long group, char * bitmap, argument
81 offset += group * nbytes;
/external/eigen/demos/opengl/
H A Dquaternion_demo.cpp566 QButtonGroup* group = new QButtonGroup(panel); local
570 group->addButton(but, NavTurnAround);
574 group->addButton(but, NavFly);
576 group->button(mNavMode)->setChecked(true);
577 connect(group, SIGNAL(buttonClicked(int)), this, SLOT(setNavMode(int)));
585 QButtonGroup* group = new QButtonGroup(panel); local
588 group->addButton(but, RotationStable);
592 group->addButton(but, RotationStandard);
595 group->button(mRotationMode)->setChecked(true);
596 connect(group, SIGNA
604 QButtonGroup* group = new QButtonGroup(panel); local
[all...]
/external/emma/core/java12/com/vladium/emma/rt/
H A DAppRunner.java337 // TODO: create a thread group for all exit hooks?
502 appThreadGroup = new ThreadGroup (IAppConstants.APP_NAME + " thread group [" + m_appClassName + "]");
836 private static void joinNonDeamonThreads (final ThreadGroup group) argument
838 if (group == null) throw new IllegalArgumentException ("null input: group");
845 // note: group.activeCount() is only an estimate as more threads
852 // enumerate [recursively] all threads in 'group':
853 synchronized (group)
855 aliveThreads = new Thread [group.activeCount () << 1];
856 aliveCount = group
[all...]
/external/icu4c/common/
H A Ducnv_lmb.c83 That is, a sometimes-optional 'group' byte, followed by 1 and sometimes 2
131 group byte is for a single byte char set or not we use this define: */
142 each group byte to introduce a fixed-width encoding (to make it faster to
143 count characters), we use a convention of doubling up on the group byte
148 Next, you will notice that the list of group bytes has some gaps.
187 as group '0', as a place to tuck this exceptions list.*/
192 LOTUS added a new group 0x14 to hold Unicode values not otherwise
209 translations even faster,sometimes the optimization group byte can be dropped
211 group byte that is dropped is called the 'optimization group'
744 LMBCSConversionWorker( UConverterDataLMBCS * extraInfo, ulmbcs_byte_t group, ulmbcs_byte_t * pStartLMBCS, UChar * pUniChar, ulmbcs_byte_t * lastConverterIndex, UBool * groups_tried ) argument
920 ulmbcs_byte_t group = FindLMBCSUniRange(uniChar); local
1149 ulmbcs_byte_t group; local
[all...]
/external/kernel-headers/original/linux/
H A Dnetlink.h107 __u32 group; member in struct:nl_pktinfo
182 extern void __netlink_clear_multicast_users(struct sock *sk, unsigned int group);
183 extern void netlink_clear_multicast_users(struct sock *sk, unsigned int group);
185 extern int netlink_has_listeners(struct sock *sk, unsigned int group);
188 __u32 group, gfp_t allocation);
190 __u32 pid, __u32 group, gfp_t allocation,
193 extern int netlink_set_err(struct sock *ssk, __u32 pid, __u32 group, int code);
/external/linux-tools-perf/
H A Dbuiltin-record.c50 static int group = 0; variable
278 if (perf_evsel__open(pos, evlist->cpus, evlist->threads, group) < 0) {
H A Dbuiltin-top.c105 static bool group = false; variable
903 top.evlist->threads, group) < 0) {
1047 OPT_BOOLEAN('g', "group", &group,
1048 "put the counters into a counter group"),
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h319 __itt_group_id group; member in struct:___itt_api_info_20101001
328 __itt_group_id group; member in struct:___itt_api_info
/external/openssl/crypto/ec/
H A Dec_asn1.c66 int EC_GROUP_get_basis_type(const EC_GROUP *group) argument
70 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) !=
75 while (group->poly[i] != 0)
87 int EC_GROUP_get_trinomial_basis(const EC_GROUP *group, unsigned int *k) argument
89 if (group == NULL)
92 if (EC_GROUP_method_of(group)->group_set_curve != ec_GF2m_simple_group_set_curve
93 || !((group->poly[0] != 0) && (group->poly[1] != 0) && (group->poly[2] == 0)))
100 *k = group
104 EC_GROUP_get_pentanomial_basis(const EC_GROUP *group, unsigned int *k1, unsigned int *k2, unsigned int *k3) argument
298 ec_asn1_group2fieldid(const EC_GROUP *group, X9_62_FIELDID *field) argument
436 ec_asn1_group2curve(const EC_GROUP *group, X9_62_CURVE *curve) argument
570 ec_asn1_group2parameters(const EC_GROUP *group, ECPARAMETERS *param) argument
691 ec_asn1_group2pkparameters(const EC_GROUP *group, ECPKPARAMETERS *params) argument
1068 EC_GROUP *group = NULL; local
[all...]
H A Dec_curve.c1768 * As the group order is not a prime this curve is not suitable
1796 * As the group order is not a prime this curve is not suitable
1937 EC_GROUP *group=NULL; local
1970 if (((group = EC_GROUP_new(meth)) == NULL) ||
1971 (!(group->meth->group_set_curve(group, p, a, b, ctx))))
1979 if ((group = EC_GROUP_new_curve_GFp(p, a, b, ctx)) == NULL)
1988 if ((group = EC_GROUP_new_curve_GF2m(p, a, b, ctx)) == NULL)
1996 if ((P = EC_POINT_new(group)) == NULL)
2008 if (!EC_POINT_set_affine_coordinates_GFp(group,
[all...]
H A Dec_lib.c123 void EC_GROUP_free(EC_GROUP *group) argument
125 if (!group) return;
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
130 EC_EX_DATA_free_all_data(&group->extra_data);
132 if (group->generator != NULL)
133 EC_POINT_free(group->generator);
134 BN_free(&group->order);
135 BN_free(&group
144 EC_GROUP_clear_free(EC_GROUP *group) argument
272 EC_GROUP_method_of(const EC_GROUP *group) argument
284 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
313 EC_GROUP_get0_generator(const EC_GROUP *group) argument
319 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
328 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
337 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
343 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
349 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
355 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
361 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
368 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
374 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
395 EC_GROUP_get0_seed(const EC_GROUP *group) argument
401 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
407 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
418 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
429 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
440 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
451 EC_GROUP_get_degree(const EC_GROUP *group) argument
462 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
693 EC_POINT_new(const EC_GROUP *group) argument
768 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
793 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
809 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
826 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
843 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
877 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
894 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
911 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
927 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
943 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
959 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
975 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
991 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1007 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1023 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1050 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
1060 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
1074 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1086 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
[all...]
/external/oprofile/libpp/
H A Darrange_profiles.cpp342 it->longname = "Processes with a thread group ID of ";
779 /// add the files to group of image sets
780 void add_to_group(image_group_set & group, string const & app_image, argument
786 group.push_back(set);
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc71 result["group" ] = FieldDescriptorProto::TYPE_GROUP;
476 DescriptorProto* group = messages->Add(); local
477 group->set_name(field->name());
479 RecordLocation(group, DescriptorPool::ErrorCollector::NAME,
482 // As a hack for backwards-compatibility, we force the group name to start
485 if (group->name()[0] < 'A' || 'Z' < group->name()[0]) {
491 field->set_type_name(group->name());
493 DO(ParseMessageBlock(group));
495 AddError("Missing group bod
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/pm/
H A DStubPackageManager.java51 public List<PermissionInfo> queryPermissionsByGroup(String group, int flags) throws NameNotFoundException { argument
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DAgentSession.java922 * @return MacroGroup the root macro group.
951 * @param group the macro group to save.
954 public void saveMacros(MacroGroup group) throws XMPPException { argument
959 request.setPersonalMacroGroup(group);
/external/tcpdump/
H A Dprint-icmp6.c746 u_int group, nsrcs, ngroups; local
757 printf(", %d group record(s)", ngroups);
759 /* Print the group records */
760 group = 8;
763 if (len < group + 20) {
767 TCHECK2(bp[group + 4], sizeof(struct in6_addr));
768 printf(" [gaddr %s", ip6addr_string(&bp[group + 4]));
770 bp[group]));
771 nsrcs = (bp[group + 2] << 8) + bp[group
[all...]
H A Dprint-pgm.c367 const void *source, *group; local
403 * Skip past the group, saving info along the way
423 group = bp;
430 inet_ntop(group_af, group, group_buf, sizeof(group_buf));
H A Dtcpdump.c371 int initgroups(const char *user, gid_t group) {return 0;} argument
/external/v8/src/
H A Dd8.h170 explicit IsolateThread(SourceGroup* group) argument
171 : i::Thread(GetThreadOptions()), group_(group) {}
/external/webkit/Source/WebCore/bindings/v8/
H A DV8GCController.cpp195 return "Object group";
261 // If the node is in document, put it in the ownerDocument's object group.
267 // Otherwise, the node is put in an object group identified by the root
277 // If the attribute has no element, no need to put it in the group,
278 // because it'll always be a group of 1.
296 // we need to group them with their node or regular ones.
385 // Group by sorting by the group id.
400 // We only care about a group if it has more than one object. If it only
409 Vector<v8::Persistent<v8::Value> > group; local
410 group
[all...]
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheGroup.cpp86 ASSERT(m_newestCache->group() == this);
108 if (ApplicationCacheGroup* group = cacheStorage().cacheGroupForURL(url)) {
109 ASSERT(group->newestCache());
110 ASSERT(!group->isObsolete());
112 return group->newestCache();
127 if (ApplicationCacheGroup* group = cacheStorage().fallbackCacheGroupForURL(url)) {
128 ASSERT(group->newestCache());
129 ASSERT(!group->isObsolete());
131 return group->newestCache();
159 if (manifestURL == mainResourceCache->group()
202 ApplicationCacheGroup* group = cacheStorage().findOrCreateCacheGroup(manifestURL); local
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderFlexibleBox.cpp469 // grow, then we go from the lowest flex group to the highest flex group. For shrinking,
470 // we go from the highest flex group to the lowest group.
475 // Always start off by assuming the group can get all the remaining space.
499 // If we just couldn't grow/shrink any more, then it's time to transition to the next flex group.
718 // grow, then we go from the lowest flex group to the highest flex group. For shrinking,
719 // we go from the highest flex group to the lowest group
962 allowedChildFlex(RenderBox* child, bool expanding, unsigned int group) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/common/
H A Dsae.c20 int sae_set_group(struct sae_data *sae, int group) argument
29 /* First, check if this is an ECC group */
30 tmp->ec = crypto_ec_init(group);
32 sae->group = group;
39 /* Not an ECC group, check FFC */
40 tmp->dh = dh_groups_get(group);
42 sae->group = group;
68 /* Unsupported group */
676 sae_group_allowed(struct sae_data *sae, int *allowed_groups, u16 group) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Dikev2.c383 u16 group; local
402 group = WPA_GET_BE16(kei);
403 wpa_printf(MSG_DEBUG, "IKEV2: KEi DH Group #%u", group);
405 if (group != data->proposal.dh) {
408 group, data->proposal.dh);
417 wpa_printf(MSG_INFO, "IKEV2: Unsupported DH group");

Completed in 644 milliseconds

1234567891011>>