Searched defs:group (Results 176 - 200 of 504) sorted by relevance

1234567891011>>

/external/e2fsprogs/resize/
H A Dmain.c103 unsigned int group; local
111 for (group = 0; group < fs->group_desc_count; group++) {
112 has_sb = ext2fs_bg_has_super(fs, group);
113 if (group == 0 || has_sb != prev_has_sb)
115 b_stride = ext2fs_block_bitmap_loc(fs, group) -
116 ext2fs_block_bitmap_loc(fs, group - 1) -
118 i_stride = ext2fs_inode_bitmap_loc(fs, group) -
119 ext2fs_inode_bitmap_loc(fs, group
[all...]
/external/icu/icu4c/source/i18n/
H A Duspoof_wsconf.cpp71 // Extract a regular expression match group into a char * string.
72 // The group must contain only invariant characters.
76 URegularExpression *e, int32_t group, char *destBuf, int32_t destCapacity, UErrorCode &status) {
81 int32_t len = uregex_group(e, group, ubuf, 50, &status);
75 extractGroup( URegularExpression *e, int32_t group, char *destBuf, int32_t destCapacity, UErrorCode &status) argument
/external/kernel-headers/original/uapi/linux/
H A Digmp.h34 __be32 group; member in struct:igmphdr
37 /* V3 group record types [grec_type] */
66 __be32 group; member in struct:igmpv3_query
/external/libnl/lib/netfilter/
H A Dlog_obj.c37 nl_dump(p, "group=%u ", log->log_group);
104 void nfnl_log_set_group(struct nfnl_log *log, uint16_t group) argument
106 log->log_group = group;
258 __ADD(LOG_ATTR_GROUP, group)
H A Dqueue_obj.c39 nl_dump(p, "group=%u ", queue->queue_group);
100 void nfnl_queue_set_group(struct nfnl_queue *queue, uint16_t group) argument
102 queue->queue_group = group;
188 __ADD(QUEUE_ATTR_GROUP, group)
/external/libnl/lib/
H A Dsocket.c279 * @arg group Group identifier
286 * Make sure to use the correct group definitions as the older
292 int nl_socket_add_memberships(struct nl_sock *sk, int group, ...) argument
300 va_start(ap, group);
302 while (group != 0) {
303 if (group < 0)
307 &group, sizeof(group));
311 group = va_arg(ap, int);
319 int nl_socket_add_membership(struct nl_sock *sk, int group) argument
336 nl_socket_drop_memberships(struct nl_sock *sk, int group, ...) argument
363 nl_socket_drop_membership(struct nl_sock *sk, int group) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dsched-messaging.c199 /* One group of senders and receivers */
200 static unsigned int group(pthread_t *pth, function
259 OPT_UINTEGER('g', "group", &num_groups, "Specify number of groups"),
291 total_children += group(pth_tab+total_children, num_fds,
315 printf("# %d sender and receiver %s per group\n",
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dperf.h221 bool group; member in struct:perf_record_opts
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dprobe-event.h35 char *group; /* Group name */ member in struct:probe_trace_event
71 char *group; /* Group name */ member in struct:perf_probe_event
/external/llvm/utils/llvm-build/llvmbuild/
H A Dmain.py444 # Otherwise if it is a group, yield or traverse depending on what
795 group = OptionGroup(parser, "Input Options")
796 group.add_option("", "--source-root", dest="source_root", metavar="PATH",
799 group.add_option("", "--llvmbuild-source-root",
804 group.add_option("", "--build-root", dest="build_root", metavar="PATH",
807 parser.add_option_group(group)
809 group = OptionGroup(parser, "Output Options")
810 group.add_option("", "--print-tree", dest="print_tree",
813 group.add_option("", "--write-llvmbuild", dest="write_llvmbuild",
816 group
842 group = OptionGroup(parser, "Configuration Options") variable
[all...]
/external/openssl/apps/
H A Decparam.c121 EC_GROUP *group = NULL; local
413 group = EC_GROUP_new_by_curve_name(nid);
414 if (group == NULL)
420 EC_GROUP_set_asn1_flag(group, asn1_flag);
421 EC_GROUP_set_point_conversion_form(group, form);
425 group = d2i_ECPKParameters_bio(in, NULL);
429 group = PEM_read_bio_ECPKParameters(in,NULL,NULL,NULL);
437 if (group == NULL)
446 EC_GROUP_set_point_conversion_form(group, form);
449 EC_GROUP_set_asn1_flag(group, asn1_fla
[all...]
/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_key.c84 ret->group = NULL;
100 ret->group = EC_GROUP_new_by_curve_name(nid);
101 if (ret->group == NULL)
128 if (r->group != NULL)
129 EC_GROUP_free(r->group);
152 if (src->group)
154 const EC_METHOD *meth = EC_GROUP_method_of(src->group);
155 /* clear the old group */
156 if (dest->group)
157 EC_GROUP_free(dest->group);
466 EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) argument
[all...]
/external/openssl/crypto/ecdsa/
H A Decdsatest.c289 EC_GROUP *group; local
340 group = EC_GROUP_new_by_curve_name(nid);
341 if (group == NULL)
343 if (EC_KEY_set_group(eckey, group) == 0)
345 EC_GROUP_free(group);
364 group = EC_GROUP_new_by_curve_name(nid);
365 if (group == NULL)
367 if (EC_KEY_set_group(wrong_eckey, group) == 0)
369 EC_GROUP_free(group);
/external/oprofile/module/x86/
H A Dop_nmi.c176 static void free_msr_group(struct op_msr_group * group) argument
178 if (group->addrs)
179 kfree(group->addrs);
180 if (group->saved)
181 kfree(group->saved);
182 group->addrs = NULL;
183 group->saved = NULL;
/external/protobuf/src/google/protobuf/
H A Dunknown_field_set.h153 inline const UnknownFieldSet& group() const;
235 inline const UnknownFieldSet& UnknownField::group() const { function in class:google::protobuf::UnknownField
H A Dunknown_field_set_unittest.cc169 ASSERT_EQ(1, field->group().field_count());
171 const UnknownField& nested_field = field->group().field(0);
493 UnknownFieldSet* group = unknown_fields->AddGroup(1); local
497 group->AddVarint(1, 0);
/external/qemu/util/
H A Dqemu-config.c470 static QemuOptsList *find_list(QemuOptsList **lists, const char *group) argument
475 if (strcmp(lists[i]->name, group) == 0)
479 error_report("there is no option group \"%s\"", group);
484 QemuOptsList *qemu_find_opts(const char *group) argument
486 return find_list(vm_config_groups, group);
507 char group[64], id[64], arg[64]; local
512 rc = sscanf(str, "%63[^.].%63[^.].%63[^=]%n", group, id, arg, &offset);
518 list = qemu_find_opts(group);
598 char line[1024], group[6 local
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenu.java114 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
118 public void setGroupVisible(int group, boolean visible) { argument
122 public void setGroupEnabled(int group, boolean enabled) { argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
H A DMenuLoaderTest.java127 public void setGroupCheckable(int group, boolean checkable, argument
133 public void setGroupVisible(int group, boolean visible) { argument
138 public void setGroupEnabled(int group, boolean enabled) { argument
/external/smack/src/org/jivesoftware/smack/packet/
H A DPrivacyItem.java23 * Privacy Items can handle different kind of blocking communications based on JID, group,
38 /** rule hold the kind of communication ([jid|group|subscription]) it will allow or block and
41 * If the type is "group", then the 'value' attribute SHOULD contain the name of a group
197 * If the type is "group", then the 'value' attribute SHOULD contain the name of a group
212 * It MUST be filled with one of these values: jid, group or subscription.
228 * If the type is "group", then the 'value' attribute SHOULD contain the name of a group
309 * It holds the kind of communication ([jid|group|subscriptio
451 group, enum constant in enum:PrivacyItem.Type
[all...]
/external/tcpdump/
H A Dprint-igmp.c156 u_int group, nsrcs, ngroups; local
166 (void)printf(", %d group record(s)", ngroups);
168 /* Print the group records */
169 group = 8;
171 if (len < group+8) {
175 TCHECK2(bp[group+4], 4);
176 (void)printf(" [gaddr %s", ipaddr_string(&bp[group+4]));
178 bp[group]));
179 nsrcs = EXTRACT_16BITS(&bp[group+2]);
181 if (len < group
[all...]
/external/valgrind/main/callgrind/
H A Dclo.c53 Int group; /* don't change caller dependency inside group !=0 */ member in struct:_fn_config
110 fnc->group = CONFIG_DEFAULT;
338 if (fnc->group != CONFIG_DEFAULT)
339 fn->group = fnc->group;
486 else if VG_STREQN(10, arg, "--fn-group") {
492 fnc->group = n;
597 " --fn-group<no>=<func> Put function into separation group <n
[all...]
/external/aac/libAACdec/src/
H A Drvlc.cpp196 int group, band, bnds; local
200 for (group=0; group < pRvlc->numWindowGroups; group++) {
202 bnds = 16*group+band;
420 int group = 0; local
447 for (group=0; group < pRvlc->numWindowGroups; group++) {
449 bnds = 16*group
610 SHORT band, group, dpcm, offset; local
931 int group; local
959 int group; local
1058 int group,band; local
[all...]
/external/aac/libSBRenc/src/
H A Dps_main.cpp551 INT group, bin, col, band; local
556 /* group wise scaling */
563 for (group=0; group < nIidGroups; group++) {
564 /* Translate group to bin */
565 bin = hPsEncode->subband2parameterIndex[group];
577 for (i = hPsEncode->iidGroupBorders[group]; i < hPsEncode->iidGroupBorders[group+1]; i++) {
588 for (i = hPsEncode->iidGroupBorders[group];
[all...]

Completed in 363 milliseconds

1234567891011>>