Searched defs:group (Results 26 - 50 of 290) sorted by relevance

1234567891011>>

/external/openssl/crypto/ecdh/
H A Dech_ossl.c116 const EC_GROUP* group; local
139 group = EC_KEY_get0_group(ecdh);
140 if ((tmp=EC_POINT_new(group)) == NULL)
146 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv_key, ctx))
152 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
154 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp, x, y, ctx))
163 if (!EC_POINT_get_affine_coordinates_GF2m(group, tmp, x, y, ctx))
171 buflen = (EC_GROUP_get_degree(group) + 7)/8;
/external/valgrind/main/callgrind/
H A Devents.h43 * A group can appear at most once in a event set.
54 /* return 0 if event group can not be registered */
113 Int group; member in struct:EventMappingEntry
/external/ceres-solver/include/ceres/
H A Dordered_groups.h46 // An element can only belong to one group at a time. A group may
49 // Groups are ordered by their group id.
53 // Add an element to a group. If a group with this id does not
59 bool AddElementToGroup(const T element, const int group) { argument
60 if (group < 0) {
66 if (it->second == group) {
67 // Element is already in the right group, nothing to do.
77 element_to_group_[element] = group;
[all...]
/external/chromium/chrome/browser/
H A Dicon_manager.cc15 IconGroupID group; member in struct:IconManager::ClientRequest
28 IconGroupID group = GetGroupIDFromFilepath(file_name); local
29 IconMap::iterator it = icon_cache_.find(CacheKey(group, size));
41 IconGroupID group = GetGroupIDFromFilepath(file_name); local
45 IconLoader* loader = new IconLoader(group, size, this);
48 ClientRequest client_request = { request, group, size };
74 CacheKey key(client_request.group, client_request.size);
93 IconManager::CacheKey::CacheKey(const IconGroupID& group, argument
95 : group(group),
[all...]
H A Dautocomplete_history_manager.cc36 // A SSN is of the form AAA-GG-SSSS (A = area number, G = group number, S =
38 // group, and serial numbers are valid. It is possible to check if the group
58 int group; local
61 &group) || group == 0)
/external/chromium/chrome/browser/sync/sessions/
H A Dordered_commit_set.h64 // belonging to |group|. This is useful when you need to process a commit
67 const Projection& GetCommitIdProjection(browser_sync::ModelSafeGroup group) { argument
68 return projections_[group];
91 syncable::ModelType group; member in struct:browser_sync::sessions::OrderedCommitSet::CommitItem
105 // group for each ID so that the insertion can update the appropriate
/external/e2fsprogs/lib/ext2fs/
H A Dalloc_tables.c32 * group of bitmaps or inode tables for a flexbg group. Returns the
36 static blk_t flexbg_offset(ext2_filsys fs, dgrp_t group, blk_t start_blk, argument
45 flexbg = group / flexbg_size;
57 if (start_blk && group % flexbg_size) {
64 last_grp = group | (flexbg_size - 1);
81 errcode_t ext2fs_allocate_group_table(ext2_filsys fs, dgrp_t group, argument
89 group_blk = ext2fs_group_first_block(fs, group);
90 last_blk = ext2fs_group_last_block(fs, group);
99 last_grp = group | (flexbg_siz
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/dh/
H A DDhExchange.java68 public void init(int group, SecureRandom rnd) argument
72 if (group == 1)
74 else if (group == 14)
77 throw new IllegalArgumentException("Unknown DH group " + group);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DRelationshipTester.java44 public RelationshipTester<T> addRelatedGroup(Iterable<? extends T> group) { argument
45 groups.add(ImmutableList.copyOf(group));
51 ImmutableList<T> group = groups.get(groupNumber);
52 for (int itemNumber = 0; itemNumber < group.size(); itemNumber++) {
53 // check related items in same group
54 for (int relatedItemNumber = 0; relatedItemNumber < group.size(); relatedItemNumber++) {
75 ImmutableList<T> group = groups.get(groupNumber);
76 T item = group.get(itemNumber);
77 T related = group.get(relatedItemNumber);
105 .append(" [group ")
[all...]
/external/icu4c/test/intltest/
H A Dtsdcfmsy.cpp63 UnicodeString group = en.getSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol); local
64 fr.setSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol, group);
/external/libxslt/libxslt/
H A DnumbersInternals.h59 int group; /* Number of chars per display 'group' */ member in struct:_xsltFormatNumberInfo
/external/llvm/include/llvm/MC/
H A DMCSectionELF.h51 SectionKind K, unsigned entrySize, const MCSymbol *group)
53 EntrySize(entrySize), Group(group) {}
50 MCSectionELF(StringRef Section, unsigned type, unsigned flags, SectionKind K, unsigned entrySize, const MCSymbol *group) argument
/external/openssl/crypto/ec/
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 Decp_mont.c122 int ec_GFp_mont_group_init(EC_GROUP *group) argument
126 ok = ec_GFp_simple_group_init(group);
127 group->field_data1 = NULL;
128 group->field_data2 = NULL;
133 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
135 if (group->field_data1 != NULL)
137 BN_MONT_CTX_free(group->field_data1);
138 group->field_data1 = NULL;
140 if (group->field_data2 != NULL)
142 BN_free(group
149 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
204 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
264 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
276 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
288 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
300 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
312 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
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...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPreferenceGroupTest.java27 private TestPreferenceGroup group; field in class:PreferenceGroupTest
38 group = new TestPreferenceGroup(context, attrs);
39 shadow = Robolectric.shadowOf(group);
55 assertThat( group.getPreferenceCount(), equalTo(0));
58 assertThat( group.addPreference(pref1), equalTo(true));
59 assertThat( group.getPreferenceCount(), equalTo(1));
62 assertThat( group.addPreference(pref1), equalTo(true));
63 assertThat( group.getPreferenceCount(), equalTo(1));
66 assertThat( group.addPreference(pref2), equalTo(true));
67 assertThat( group
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/
H A DWorkgroupInvitation.java26 * An immutable class wrapping up the basic information which comprises a group chat invitation.
47 * @param group the jid of the room to which the person is invited
53 public WorkgroupInvitation (String jid, String group, String workgroup, argument
55 this(jid, group, workgroup, sessID, msgBody, from, null);
61 * @param group the jid of the room to which the person is invited
68 public WorkgroupInvitation (String jid, String group, String workgroup, String sessID, String msgBody, argument
74 this.groupChatName = group;
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
H A DMacroGroup.java64 public void addMacroGroup(MacroGroup group) { argument
65 macroGroups.add(group);
68 public void removeMacroGroup(MacroGroup group) { argument
69 macroGroups.remove(group);
80 MacroGroup group = (MacroGroup)iter.next();
81 if (group.getTitle().equalsIgnoreCase(title)) {
82 return group;
/external/webkit/Source/JavaScriptCore/API/
H A DJSContextRef.cpp52 JSContextGroupRef JSContextGroupRetain(JSContextGroupRef group) argument
54 toJS(group)->ref();
55 return group;
58 void JSContextGroupRelease(JSContextGroupRef group) argument
60 toJS(group)->deref();
82 JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass) argument
87 RefPtr<JSGlobalData> globalData = group ? PassRefPtr<JSGlobalData>(toJS(group)) : JSGlobalData::createContextGroup(ThreadStackTypeSmall);
137 // global data (or context group, in API terminology).
138 // * If this is the last reference to any contexts in the given context group,
[all...]
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCache.h64 ApplicationCacheGroup* group() const { return m_group; } function in class:WebCore::ApplicationCache
/external/aac/libAACdec/src/
H A Dchannel.cpp108 int group; local
110 for (group = 0 ; group < pAacDecoderChannelInfo[L]->icsInfo.WindowGroups; group++) {
111 UCHAR groupMask = 1 << group;
115 CPns_SetCorrelation(&pAacDecoderChannelInfo[L]->data.aac.PnsData, group, band, 0);
117 if (CPns_IsPnsUsed(&pAacDecoderChannelInfo[L]->data.aac.PnsData, group, band) &&
118 CPns_IsPnsUsed(&pAacDecoderChannelInfo[R]->data.aac.PnsData, group, band))
H A Drvlcconceal.cpp116 int band,bnds,group,startBand; local
139 for (group=conceal_group_min; group >= 0; group--) {
141 bnds = 16*group+band;
191 int band,bnds,group,startBand; local
215 for (group=conceal_group_max; group < pRvlc->numWindowGroups; group++) {
217 bnds = 16*group
269 int band,bnds,startBand,endBand,group; local
405 int band,bnds,startBand,endBand,group; local
535 int band,bnds,group; local
643 int band,bnds,group; local
[all...]
H A Dstereo.cpp113 int group,band; local
127 for (group=0; group<windowGroups; group++)
131 pJointStereoData->MsUsed[band] |= (FDKreadBits(bs,1) << group);
158 int window, group, scaleFactorBandsTransmitted; local
162 for (window = 0, group = 0; group < windowGroups; group++)
164 UCHAR groupMask = 1 << group;
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DJUnitCodeGen.java120 StringTemplateGroup group = StringTemplateGroup.loadGroup("junit");
122 buf.append(genClassHeader(group, className, lexerName, parserName));
123 buf.append(genTestRuleMethods(group));
128 protected String genClassHeader(StringTemplateGroup group, String junitFileName, String lexerName, String parserName) { argument
129 StringTemplate classHeaderST = group.getInstanceOf("classHeader");
178 protected String genTestRuleMethods(StringTemplateGroup group) { argument
181 genTreeMethods(group, buf);
184 genParserMethods(group, buf);
189 private void genParserMethods(StringTemplateGroup group, StringBuffer buf) { argument
197 testRuleMethodST = group
239 genTreeMethods(StringTemplateGroup group, StringBuffer buf) argument
[all...]
/external/chromium/chrome/browser/autofill/
H A Dautofill_type.h52 FieldTypeGroup group; member in struct:AutofillType::AutofillTypeDefinition
61 FieldTypeGroup group() const;

Completed in 1206 milliseconds

1234567891011>>