HomeSort by relevance Sort by last modified time
    Searched full:elems (Results 1 - 25 of 348) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_6/wpa_supplicant/src/common/
ieee802_11_common.c 23 struct ieee802_11_elems *elems,
49 elems->wpa_ie = pos;
50 elems->wpa_ie_len = elen;
70 elems->wmm = pos;
71 elems->wmm_len = elen;
74 elems->wmm_tspec = pos;
75 elems->wmm_tspec_len = elen;
87 elems->wps_ie = pos;
88 elems->wps_ie_len = elen;
102 elems->vendor_ht_cap = pos
    [all...]
ieee802_11_common.h 71 struct ieee802_11_elems *elems,
  /external/icu4c/i18n/
ucoleitr.cpp 211 UCollationPCE(UCollationElements *elems);
222 UCollationPCE::UCollationPCE(UCollationElements *elems)
224 init(elems->iteratordata_.coll);
246 inline uint64_t processCE(UCollationElements *elems, uint32_t ce)
253 switch(elems->pce->strength) {
274 if ((elems->pce->toShift && elems->pce->variableTop > ce && primary != 0)
275 || (elems->pce->isShifted && primary == 0)) {
281 if (elems->pce->strength >= UCOL_QUATERNARY) {
286 elems->pce->isShifted = TRUE
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_11_common.c 17 struct ieee802_11_elems *elems,
43 elems->wpa_ie = pos;
44 elems->wpa_ie_len = elen;
64 elems->wmm = pos;
65 elems->wmm_len = elen;
68 elems->wmm_tspec = pos;
69 elems->wmm_tspec_len = elen;
81 elems->wps_ie = pos;
82 elems->wps_ie_len = elen;
97 elems->p2p = pos
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-array.cpp 12 int elems[N]; member in class:IntArray
19 int elems[10]; member in class:TenElementArray
25 T elems[N]; member in class:Array
  /external/icu4c/i18n/unicode/
ucoleitr.h 138 * @param elems The UCollationElements to close.
142 ucol_closeElements(UCollationElements *elems);
148 * @param elems The UCollationElements to reset.
154 ucol_reset(UCollationElements *elems);
162 * @param elems The UCollationElements containing the text.
168 ucol_forceHanImplicit(UCollationElements *elems, UErrorCode *status);
173 * @param elems The UCollationElements containing the text.
180 ucol_next(UCollationElements *elems, UErrorCode *status);
189 * @param elems The UCollationElements containing the text.
199 ucol_previous(UCollationElements *elems, UErrorCode *status)
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 976 set->elems = re_malloc (Idx, size);
977 if (BE (set->elems == NULL, 0))
988 set->elems = re_malloc (Idx, 1);
989 if (BE (set->elems == NULL, 0))
994 set->elems[0] = elem;
1003 set->elems = re_malloc (Idx, 2);
1004 if (BE (set->elems == NULL, 0))
1009 set->elems[0] = elem1;
1016 set->elems[0] = elem1;
1017 set->elems[1] = elem2
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
WhitespaceInfoPaths.java 43 * @param elems Should be a non-null reference to a list
46 public void setElements(Vector elems)
48 m_elements = elems;
  /external/mesa3d/src/glsl/
opt_noop_swizzle.cpp 59 int elems = swiz->val->type->vector_elements; local
62 if (elems >= 2 && swiz->mask.y != 1)
64 if (elems >= 3 && swiz->mask.z != 2)
66 if (elems >= 4 && swiz->mask.w != 3)
  /external/webkit/Source/WebCore/icu/unicode/
ucoleitr.h 129 * @param elems The UCollationElements to close.
133 ucol_closeElements(UCollationElements *elems);
139 * @param elems The UCollationElements to reset.
145 ucol_reset(UCollationElements *elems);
150 * @param elems The UCollationElements containing the text.
157 ucol_next(UCollationElements *elems, UErrorCode *status);
166 * @param elems The UCollationElements containing the text.
176 ucol_previous(UCollationElements *elems, UErrorCode *status);
182 * @param elems The UCollationElements containing the text.
190 ucol_getMaxExpansion(const UCollationElements *elems, int32_t order)
    [all...]
  /external/wpa_supplicant_8/src/ap/
ap_list.c 220 struct ieee802_11_elems *elems,
245 if (elems->ssid) {
246 len = elems->ssid_len;
249 os_memcpy(ap->ssid, elems->ssid, len);
255 elems->supp_rates, elems->supp_rates_len,
256 elems->ext_supp_rates, elems->ext_supp_rates_len);
258 ap->wpa = elems->wpa_ie != NULL;
260 if (elems->erp_info && elems->erp_info_len == 1
    [all...]
beacon.c 318 struct ieee802_11_elems elems; local
339 if (ieee802_11_parse_elems(ie, ie_len, &elems, 0) == ParseFailed) {
345 if ((!elems.ssid || !elems.supp_rates)) {
353 if (hapd->p2p && elems.wps_ie) {
366 if (hapd->p2p && elems.p2p) {
379 if (hapd->conf->ignore_broadcast_ssid && elems.ssid_len == 0) {
389 elems.ssid_len == P2P_WILDCARD_SSID_LEN &&
390 os_memcmp(elems.ssid, P2P_WILDCARD_SSID,
393 elems.ssid_len = 0
    [all...]
drv_callbacks.c 38 struct ieee802_11_elems elems; local
65 ieee802_11_parse_elems(req_ies, req_ies_len, &elems, 0);
66 if (elems.wps_ie) {
67 ie = elems.wps_ie - 2;
68 ielen = elems.wps_ie_len + 2;
70 } else if (elems.rsn_ie) {
71 ie = elems.rsn_ie - 2;
72 ielen = elems.rsn_ie_len + 2;
74 } else if (elems.wpa_ie) {
75 ie = elems.wpa_ie - 2
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionmessages.cc 393 XmlElements* elems,
399 return trans_parser->WriteCandidates(protocol, candidates, elems, error);
404 XmlElements* elems,
410 trans_parsers, elems, error))
419 XmlElements* elems,
429 elems->push_back(trans_elem);
435 XmlElements* elems) {
441 elems->push_back(pair_elem);
446 XmlElements* elems,
455 WriteJingleContentPair(tinfo->content_name, pair_elems, elems);
    [all...]
sessionmessages.h 226 XmlElements* elems,
239 XmlElements* elems,
247 XmlElements* elems);
260 XmlElements* elems,
266 void WriteSessionView(const SessionView& view, XmlElements* elems);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AdditionalSubtype.java 78 final String elems[] = prefSubtype.split(LOCALE_AND_LAYOUT_SEPARATOR); local
79 if (elems.length < 2 || elems.length > 3) {
82 final String localeString = elems[0];
83 final String keyboardLayoutSetName = elems[1];
84 final String extraValue = (elems.length == 3) ? elems[2] : null;
  /dalvik/vm/
ReferenceTable.cpp 216 static void logSummaryLine(const Object* obj, size_t elems, int identical, int equiv)
233 if (elems != 0) {
234 StringAppendF(&className, " (%zd elements)", elems);
287 size_t elems = getElementCount(ref); local
288 if (elems != 0) {
289 StringAppendF(&extras, " (%zd elements)", elems);
336 size_t elems; local
338 elems = getElementCount(refs[idx-1]);
344 getElementCount(refs[idx]) == elems)
350 logSummaryLine(refs[idx-1], elems, identical, equiv)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
mlme.c 743 struct ieee802_11_elems elems; local
747 if (ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems, 0)
752 if (elems.challenge == NULL) {
757 ieee80211_send_auth(wpa_s, 3, elems.challenge - 2,
758 elems.challenge_len + 2, 1);
991 struct ieee802_11_elems *elems)
1001 if (elems->mdie && elems->mdie_len >= MOBILITY_DOMAIN_ID_LEN)
1002 mobility_domain = elems->mdie;
1003 if (elems->ftie && elems->ftie_len >= sizeof(struct rsn_ftie))
1038 struct ieee802_11_elems elems; local
1285 struct ieee802_11_elems elems; local
1566 struct ieee802_11_elems elems; local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/
importList.html 18 var elems = window.opener.document.forms["testCases"].elements;
38 elems[suites[ary[1]].testDirs[ary[2]].tests[ary[3]]].
  /frameworks/base/media/mca/filterfw/jni/
jni_util.cpp 148 jint* elems = env->GetIntArrayElements(static_cast<jintArray>(object), NULL); local
150 result = MakeIntArrayValue(elems, count);
151 env->ReleaseIntArrayElements(static_cast<jintArray>(object), elems, JNI_ABORT); local
153 jfloat* elems = env->GetFloatArrayElements(static_cast<jfloatArray>(object), NULL); local
155 result = MakeFloatArrayValue(elems, count);
156 env->ReleaseFloatArrayElements(static_cast<jfloatArray>(object), elems, JNI_ABORT); local
  /external/apache-http/src/org/apache/http/message/
BasicHeaderValueFormatter.java 88 * @param elems the header elements to format
97 String formatElements(final HeaderElement[] elems,
102 return formatter.formatElements(null, elems, quote).toString();
108 final HeaderElement[] elems,
110 if (elems == null) {
115 int len = estimateElementsLen(elems);
122 for (int i=0; i<elems.length; i++) {
126 formatHeaderElement(buffer, elems[i], quote);
136 * @param elems the header elements to format, or <code>null</code>
140 protected int estimateElementsLen(final HeaderElement[] elems) {
    [all...]
  /external/libxslt/libxslt/
variables.h 75 xsltStackElemPtr elems);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
chio.h 36 int cvp_n1; /* number of vendor specific elems (CHET_V1) */
38 int cvp_n2; /* number of vendor specific elems (CHET_V2) */
40 int cvp_n3; /* number of vendor specific elems (CHET_V3) */
42 int cvp_n4; /* number of vendor specific elems (CHET_V4) */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
chio.h 36 int cvp_n1; /* number of vendor specific elems (CHET_V1) */
38 int cvp_n2; /* number of vendor specific elems (CHET_V2) */
40 int cvp_n3; /* number of vendor specific elems (CHET_V3) */
42 int cvp_n4; /* number of vendor specific elems (CHET_V4) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
chio.h 36 int cvp_n1; /* number of vendor specific elems (CHET_V1) */
38 int cvp_n2; /* number of vendor specific elems (CHET_V2) */
40 int cvp_n3; /* number of vendor specific elems (CHET_V3) */
42 int cvp_n4; /* number of vendor specific elems (CHET_V4) */

Completed in 396 milliseconds

1 2 3 4 5 6 7 8 91011>>