HomeSort by relevance Sort by last modified time
    Searched defs:sm (Results 126 - 150 of 286) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 846 StackMap sm = (StackMap)ca.getAttribute(StackMap.tag); local
847 if (sm != null)
848 sm.shiftPc(where, gapLength, exclusive);
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 631 SecurityManager sm = System.getSecurityManager(); local
632 if (sm == null) {
    [all...]
  /external/libhevc/common/x86/
ihevc_intra_pred_filters_sse42_intr.c 413 __m128i sm = _mm_loadu_si128((__m128i *)&IHEVCE_SHUFFLEMASK5[0]); local
462 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
604 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
684 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
800 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
949 __m128i sm = _mm_loadu_si128((__m128i *)&IHEVCE_SHUFFLEMASK4[0]); local
    [all...]
ihevc_intra_pred_filters_ssse3_intr.c 1073 __m128i sm = _mm_load_si128((__m128i *)&IHEVCE_SHUFFLEMASK5[0]); local
1459 __m128i sm = _mm_load_si128((__m128i *)&IHEVCE_SHUFFLEMASK4[0]); local
    [all...]
  /external/valgrind/VEX/unused/
linker.c 221 StringMap* sm = malloc(sizeof(StringMap)); local
222 sm->sm_size = 10;
223 sm->sm_used = 0;
224 sm->maplets = malloc(10 * sizeof(Maplet));
225 return sm;
228 static void delete_StringMap ( StringMap* sm )
230 assert(sm->maplets != NULL);
231 free(sm->maplets);
232 sm->maplets = NULL;
233 free(sm);
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_1x.c 137 struct eapol_state_machine *sm = sta->eapol_sm; local
139 if (sm == NULL)
170 if (sm->eap_if->eapKeyData == NULL || sm->eap_if->eapKeyDataLen < 64) {
185 os_memcpy(ekey + sizeof(key->key_iv), sm->eap_if->eapKeyData, 32);
194 hmac_md5(sm->eap_if->eapKeyData + 32, 32, buf, sizeof(*hdr) + len,
198 " (%s index=%d)", MAC2STR(sm->addr),
210 struct eapol_state_machine *sm = sta->eapol_sm; local
212 if (sm == NULL || !sm->eap_if->eapKeyData
562 struct eapol_state_machine *sm = sta->eapol_sm; local
694 struct eapol_state_machine *sm = sta->eapol_sm; local
727 struct eapol_state_machine *sm = sta->eapol_sm; local
1143 struct eapol_state_machine *sm = sta->eapol_sm; local
1170 struct eapol_state_machine *sm = sta->eapol_sm; local
1246 struct eapol_state_machine *sm = sta->eapol_sm; local
1291 struct eapol_state_machine *sm = sta->eapol_sm; local
1347 struct eapol_state_machine *sm = sta->eapol_sm; local
1377 struct eapol_state_machine *sm = sta->eapol_sm; local
1541 struct eapol_state_machine *sm; member in struct:sta_id_search
1550 struct eapol_state_machine *sm = sta->eapol_sm; local
1590 struct eapol_state_machine *sm; local
1760 struct eapol_state_machine *sm = sta->eapol_sm; local
1882 struct eapol_state_machine *sm = sta->eapol_sm; local
2363 struct eapol_state_machine *sm = sta->eapol_sm; local
    [all...]
wpa_auth_ft.c 27 static int wpa_ft_send_rrb_auth_resp(struct wpa_state_machine *sm,
304 static int wpa_ft_pull_pmk_r1(struct wpa_state_machine *sm,
311 r0kh = sm->wpa_auth->conf.r0kh_list;
313 if (r0kh->id_len == sm->r0kh_id_len &&
314 os_memcmp_const(r0kh->id, sm->r0kh_id, sm->r0kh_id_len) ==
321 sm->r0kh_id, sm->r0kh_id_len);
332 os_memcpy(frame.ap_address, sm->wpa_auth->addr, ETH_ALEN);
341 os_memcpy(sm->ft_pending_pull_nonce, f.nonce
1214 struct wpa_state_machine *sm = ctx; local
1226 struct wpa_state_machine *sm; local
1402 struct wpa_state_machine *sm = eloop_ctx; local
    [all...]
wpa_auth.c 31 #define STATE_MACHINE_ADDR sm->addr
35 static int wpa_sm_step(struct wpa_state_machine *sm);
41 static void wpa_request_new_ptk(struct wpa_state_machine *sm);
46 static int wpa_derive_ptk(struct wpa_state_machine *sm, const u8 *snonce,
167 int (*cb)(struct wpa_state_machine *sm, void *ctx),
231 static int wpa_use_aes_cmac(struct wpa_state_machine *sm)
235 if (wpa_key_mgmt_ft(sm->wpa_key_mgmt))
239 if (wpa_key_mgmt_sha256(sm->wpa_key_mgmt))
242 if (sm->wpa_key_mgmt == WPA_KEY_MGMT_OSEN)
299 struct wpa_state_machine *sm = timeout_ctx local
575 struct wpa_state_machine *sm; local
1393 struct wpa_state_machine *sm = timeout_ctx; local
2974 struct wpa_state_machine *sm = eloop_ctx; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap.c 39 static Boolean eap_sm_allowMethod(struct eap_sm *sm, int vendor,
41 static struct wpabuf * eap_sm_buildNak(struct eap_sm *sm, int id);
42 static void eap_sm_processIdentity(struct eap_sm *sm,
44 static void eap_sm_processNotify(struct eap_sm *sm, const struct wpabuf *req);
46 static void eap_sm_parseEapReq(struct eap_sm *sm, const struct wpabuf *req);
54 static Boolean eapol_get_bool(struct eap_sm *sm, enum eapol_bool_var var)
56 return sm->eapol_cb->get_bool(sm->eapol_ctx, var);
60 static void eapol_set_bool(struct eap_sm *sm, enum eapol_bool_var var,
63 sm->eapol_cb->set_bool(sm->eapol_ctx, var, value)
1846 struct eap_sm *sm = ctx; local
1917 struct eap_sm *sm; local
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa.c 28 * @sm: Pointer to WPA state machine data from wpa_sm_init()
38 void wpa_eapol_key_send(struct wpa_sm *sm, const u8 *kck, size_t kck_len,
42 size_t mic_len = wpa_mic_len(sm->key_mgmt);
44 if (is_zero_ether_addr(dest) && is_zero_ether_addr(sm->bssid)) {
49 if (wpa_sm_get_bssid(sm, sm->bssid) < 0) {
50 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
54 dest = sm->bssid;
55 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
62 wpa_eapol_key_mic(kck, kck_len, sm->key_mgmt, ver, msg, msg_len
532 struct wpa_sm *sm = eloop_ctx; local
583 struct wpa_sm *sm = eloop_ctx; local
2124 struct wpa_sm *sm = ctx; local
2172 struct wpa_sm *sm; local
    [all...]
tdls.c 84 static void wpa_tdls_peer_free(struct wpa_sm *sm, struct wpa_tdls_peer *peer);
85 static void wpa_tdls_disable_peer_link(struct wpa_sm *sm,
87 static int wpa_tdls_send_teardown(struct wpa_sm *sm, const u8 *addr,
157 static int wpa_tdls_get_privacy(struct wpa_sm *sm)
164 return sm->pairwise_cipher != WPA_CIPHER_NONE;
175 static int wpa_tdls_del_key(struct wpa_sm *sm, struct wpa_tdls_peer *peer)
177 if (wpa_sm_set_key(sm, WPA_ALG_NONE, peer->addr,
188 static int wpa_tdls_set_key(struct wpa_sm *sm, struct wpa_tdls_peer *peer)
207 sm->pairwise_cipher);
211 if (wpa_sm_set_key(sm, alg, peer->addr, -1, 1
317 struct wpa_sm *sm = eloop_ctx; local
617 struct wpa_sm *sm = eloop_ctx; local
2682 struct wpa_sm *sm = ctx; local
    [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 822 sp<IServiceManager> sm = defaultServiceManager(); local
823 sp<IBinder> binder = sm->getService(String16("media.player"));
884 sp<IServiceManager> sm = defaultServiceManager(); local
885 sp<IBinder> binder = sm->getService(String16("media.player"));
898 sp<IServiceManager> sm = defaultServiceManager(); local
899 sp<IBinder> binder = sm->getService(String16("media.player"));
    [all...]
  /frameworks/av/media/libmedia/
AudioSystem.cpp 50 sp<IServiceManager> sm = defaultServiceManager(); local
53 binder = sm->getService(String16("media.audio_flinger"));
663 sp<IServiceManager> sm = defaultServiceManager(); local
666 binder = sm->getService(String16("media.audio_policy"));
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.cpp 1698 sp<IServiceManager> sm = defaultServiceManager(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 360 final StorageManager sm = StorageManager.from(getContext()); local
361 mMemLowThreshold = sm.getStorageLowBytes(DATA_PATH);
362 mMemFullThreshold = sm.getStorageFullBytes(DATA_PATH);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng.cpp 924 AgpsStateMachine* sm = (AgpsStateMachine*)s.mStateMachine; local
960 AgpsStateMachine* sm = (AgpsStateMachine*)mSubscriber.mStateMachine; local
983 AgpsStateMachine* sm = locEng->ds_nif; local
1000 AgpsStateMachine* sm = locEng->ds_nif; local
1018 AgpsStateMachine* sm = locEng->ds_nif; local
1037 AgpsStateMachine* sm = (AgpsStateMachine*) local
2064 AgpsStateMachine* sm = getAgpsStateMachine(loc_eng_data, agpsType); local
2096 AgpsStateMachine* sm = getAgpsStateMachine(loc_eng_data, agpsType); local
2126 AgpsStateMachine* sm = getAgpsStateMachine(loc_eng_data, agpsType); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 817 SortedMap sm = Collections.checkedSortedMap(tm, Integer.class, String.class); local
819 sm.put(1, "one");
820 sm.put(2, "two");
823 sm.put("wron key", null);
830 sm.put(3, new Double(3.14));
  /external/jetty/src/java/org/eclipse/jetty/servlet/
ServletHandler.java 251 ServletMapping sm = smitor.next(); local
252 if (sm.getServletName().equals(_servlets[i].getName()))
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 456 CvPoint2D64f cM={0,0}, cm={0,0}, sM={0,0}, sm={0,0}; local
469 sm.x += fabs(m[i].x - cm.x);
470 sm.y += fabs(m[i].y - cm.y);
471 sM.x += fabs(M[i].x - cM.x);
472 sM.y += fabs(M[i].y - cM.y);
475 sm.x = count/sm.x; sm.y = count/sm.y
    [all...]
  /external/v8/test/cctest/
test-assembler-arm64.cc 10552 double sm = rawbits_to_double(0x7ff5555522222222); local
10624 float sm = rawbits_to_float(0x7f952222); local
10748 float sm = rawbits_to_float(0x7f952222); local
10876 double sm = rawbits_to_double(0x7ff5555522222222); local
    [all...]
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.c 151 static void eapol_sm_txLogoff(struct eapol_sm *sm);
152 static void eapol_sm_txStart(struct eapol_sm *sm);
153 static void eapol_sm_processKey(struct eapol_sm *sm);
154 static void eapol_sm_getSuppRsp(struct eapol_sm *sm);
155 static void eapol_sm_txSuppRsp(struct eapol_sm *sm);
156 static void eapol_sm_abortSupp(struct eapol_sm *sm);
157 static void eapol_sm_abort_cached(struct eapol_sm *sm);
159 static void eapol_sm_set_port_authorized(struct eapol_sm *sm);
160 static void eapol_sm_set_port_unauthorized(struct eapol_sm *sm);
167 struct eapol_sm *sm = timeout_ctx local
1789 struct eapol_sm *sm = ctx; local
1796 struct eapol_sm *sm = ctx; local
1806 struct eapol_sm *sm = ctx; local
1838 struct eapol_sm *sm = ctx; local
1878 struct eapol_sm *sm = ctx; local
1892 struct eapol_sm *sm = ctx; local
1908 struct eapol_sm *sm = ctx; local
1919 struct eapol_sm *sm = ctx; local
1932 struct eapol_sm *sm = ctx; local
1949 struct eapol_sm *sm = ctx; local
1963 struct eapol_sm *sm = ctx; local
1973 struct eapol_sm *sm = ctx; local
1983 struct eapol_sm *sm = ctx; local
1993 struct eapol_sm *sm = ctx; local
2031 struct eapol_sm *sm; local
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodec.cpp 121 sp<IServiceManager> sm = defaultServiceManager(); local
122 sp<IBinder> binder = sm->getService(String16("media.resource_manager"));
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 254 sp<IServiceManager> sm = defaultServiceManager(); local
255 sp<IBinder> binder = sm->getService(String16("media.camera.proxy"));
    [all...]
  /frameworks/base/media/jni/
android_media_MediaDrm.cpp 354 sp<IServiceManager> sm = defaultServiceManager(); local
357 sm->getService(String16("media.player"));
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng.cpp 1017 AgpsStateMachine* sm = (AgpsStateMachine*)s.mStateMachine; local
1053 AgpsStateMachine* sm = (AgpsStateMachine*)mSubscriber.mStateMachine; local
1077 AgpsStateMachine* sm = locEng->ds_nif; local
1096 AgpsStateMachine* sm = locEng->ds_nif; local
1116 AgpsStateMachine* sm = locEng->ds_nif; local
1121 AgpsStateMachine *sm = locEng->agnss_nif; local
1148 AgpsStateMachine* sm = (AgpsStateMachine*) local
2428 AgpsStateMachine* sm = getAgpsStateMachine(loc_eng_data, agpsType); local
2460 AgpsStateMachine* sm = getAgpsStateMachine(loc_eng_data, agpsType); local
2490 AgpsStateMachine* sm = getAgpsStateMachine(loc_eng_data, agpsType); local
    [all...]

Completed in 3308 milliseconds

1 2 3 4 56 7 8 91011>>