/third_party/rust/crates/serde/test_suite/tests/ |
H A D | test_self.rs | 29 _f5: [(); Self::assoc()], in test_self() 34 const fn assoc() -> usize { in test_self() 48 [(); Self::assoc()], in test_self() 53 const fn assoc() -> usize { in test_self() 68 _f5: [(); Self::assoc()], in test_self() 74 [(); Self::assoc()], in test_self() 80 const fn assoc() -> usize { in test_self()
|
H A D | test_gen.rs | 613 assoc: T::Assoc, 621 assoc: T::Assoc,
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | wpa_priv.c | 297 struct privsep_cmd_associate *assoc; in wpa_priv_cmd_associate() local 304 if (len < sizeof(*assoc)) { in wpa_priv_cmd_associate() 309 assoc = buf; in wpa_priv_cmd_associate() 310 if (sizeof(*assoc) + assoc->wpa_ie_len > len) { in wpa_priv_cmd_associate() 316 bssid = assoc->bssid; in wpa_priv_cmd_associate() 319 params.ssid = assoc->ssid; in wpa_priv_cmd_associate() 320 if (assoc->ssid_len > SSID_MAX_LEN) in wpa_priv_cmd_associate() 322 params.ssid_len = assoc->ssid_len; in wpa_priv_cmd_associate() 323 params.freq.mode = assoc in wpa_priv_cmd_associate() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | wpa_priv.c | 297 struct privsep_cmd_associate *assoc; in wpa_priv_cmd_associate() local 304 if (len < sizeof(*assoc)) { in wpa_priv_cmd_associate() 309 assoc = buf; in wpa_priv_cmd_associate() 310 if (sizeof(*assoc) + assoc->wpa_ie_len > len) { in wpa_priv_cmd_associate() 316 bssid = assoc->bssid; in wpa_priv_cmd_associate() 319 params.ssid = assoc->ssid; in wpa_priv_cmd_associate() 320 if (assoc->ssid_len > SSID_MAX_LEN) in wpa_priv_cmd_associate() 322 params.ssid_len = assoc->ssid_len; in wpa_priv_cmd_associate() 323 params.freq.mode = assoc in wpa_priv_cmd_associate() [all...] |
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftmac.c | 366 AsscEntry* assoc; in count_faces_scalable() local 372 assoc = (AsscEntry*)( fond_data + sizeof ( FamRec ) + 2 ); in count_faces_scalable() 377 if ( 0 == EndianS16_BtoN( assoc[i].fontSize ) ) in count_faces_scalable() 399 AsscEntry* assoc; in parse_fond() local 409 assoc = (AsscEntry*)( fond_data + sizeof ( FamRec ) + 2 ); in parse_fond() 410 base_assoc = assoc; in parse_fond() 419 assoc += face_index; /* add on the face_index! */ in parse_fond() 423 if ( EndianS16_BtoN( assoc->fontSize ) == 0 ) in parse_fond() 426 *sfnt_id = EndianS16_BtoN( assoc->fontID ); in parse_fond()
|
/third_party/skia/third_party/externals/freetype/builds/mac/ |
H A D | ftmac.c | 700 AsscEntry* assoc; in count_faces_scalable() local 706 assoc = (AsscEntry*)( fond_data + sizeof ( FamRec ) + 2 ); in count_faces_scalable() 711 if ( 0 == EndianS16_BtoN( assoc[i].fontSize ) ) in count_faces_scalable() 732 AsscEntry* assoc; in parse_fond() local 742 assoc = (AsscEntry*)( fond_data + sizeof ( FamRec ) + 2 ); in parse_fond() 743 base_assoc = assoc; in parse_fond() 752 assoc += face_index; /* add on the face_index! */ in parse_fond() 756 if ( EndianS16_BtoN( assoc->fontSize ) == 0 ) in parse_fond() 759 *sfnt_id = EndianS16_BtoN( assoc->fontID ); in parse_fond()
|
/third_party/alsa-lib/alsalisp/ |
H A D | test.lisp | 106 (assoc) (&check-memory) 107 (assoc 'one) (&check-memory) 108 (assoc 'one '((one . first))) (&check-memory) 109 (assoc 'one '((two . second))) (&check-memory) 110 (assoc 'one '((one . first) (two . second))) (&check-memory)
|
H A D | hello.lisp | 22 (princ "alist assoc one = " (assoc 'one alist) "\n")
|
/third_party/rust/crates/syn/src/ |
H A D | path.rs | 737 GenericArgument::AssocType(assoc) => assoc.to_tokens(tokens), in to_tokens() 738 GenericArgument::AssocConst(assoc) => assoc.to_tokens(tokens), in to_tokens()
|
/third_party/cmsis/CMSIS/Core/Include/ |
H A D | core_ca.h | 1384 unsigned int assoc; in L2C_InvAllByWay() local 1387 assoc = 16U; in L2C_InvAllByWay() 1389 assoc = 8U; in L2C_InvAllByWay() 1392 L2C_310->INV_WAY = (1U << assoc) - 1U; in L2C_InvAllByWay() 1393 while(L2C_310->INV_WAY & ((1U << assoc) - 1U)); //poll invalidate in L2C_InvAllByWay() 1402 unsigned int assoc; in L2C_CleanInvAllByWay() local 1405 assoc = 16U; in L2C_CleanInvAllByWay() 1407 assoc = 8U; in L2C_CleanInvAllByWay() 1410 L2C_310->CLEAN_INV_WAY = (1U << assoc) - 1U; in L2C_CleanInvAllByWay() 1411 while(L2C_310->CLEAN_INV_WAY & ((1U << assoc) in L2C_CleanInvAllByWay() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | wps_registrar.c | 2583 static int wps_process_assoc_state(struct wps_data *wps, const u8 *assoc) in wps_process_assoc_state() argument 2587 if (assoc == NULL) { in wps_process_assoc_state() 2592 a = WPA_GET_BE16(assoc); in wps_process_assoc_state()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | wps_registrar.c | 2574 static int wps_process_assoc_state(struct wps_data *wps, const u8 *assoc) in wps_process_assoc_state() argument 2578 if (assoc == NULL) { in wps_process_assoc_state() 2583 a = WPA_GET_BE16(assoc); in wps_process_assoc_state()
|
/third_party/python/Lib/test/ |
H A D | test_socket.py | 6414 assoc = bytes.fromhex('24825602bd12a984e0092d3e448eda5f') 6419 assoclen = len(assoc) 6426 # send assoc, plain and tag buffer in separate steps 6431 op.sendall(assoc, socket.MSG_MORE) 6440 msg = assoc + plain 6451 msg = assoc + plain 6466 msg = assoc + expected_ct + expected_tag
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | [all...] |
H A D | tsc.js | [all...] |
H A D | tsserverlibrary.js | [all...] |
H A D | typescript.js | [all...] |
H A D | typescriptServices.js | [all...] |
H A D | tsserver.js | [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |