Searched refs:CCK (Results 1 - 13 of 13) sorted by relevance

/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_phy.c28 #define CCK IEEE80211_T_CCK macro
71 /* 1 Mb */ { AH_TRUE, CCK, 1000, 0x0b, 0x00, (0x80| 2), 0 },
72 /* 2 Mb */ { AH_TRUE, CCK, 2000, 0x0a, 0x04, (0x80| 4), 1 },
73 /* 5.5 Mb */ { AH_TRUE, CCK, 5500, 0x09, 0x04, (0x80|11), 1 },
74 /* 11 Mb */ { AH_TRUE, CCK, 11000, 0x08, 0x04, (0x80|22), 1 }
79 #undef CCK macro
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_phy.c28 #define CCK IEEE80211_T_CCK macro
123 /* 1 Mb */ { AH_TRUE, CCK, 1000, 0x1b, 0x00, (0x80| 2), 0 },
124 /* 2 Mb */ { AH_TRUE, CCK, 2000, 0x1a, 0x04, (0x80| 4), 1 },
125 /* 5.5 Mb */ { AH_TRUE, CCK, 5500, 0x19, 0x04, (0x80|11), 1 },
126 /* 11 Mb */ { AH_TRUE, CCK, 11000, 0x18, 0x04, (0x80|22), 1 }
141 /* 1 Mb */ { AH_TRUE, CCK, 1000, 0x1b, 0x00, (0x80| 2), 0 },
142 /* 2 Mb */ { AH_TRUE, CCK, 2000, 0x1a, 0x04, (0x80| 4), 1 },
143 /* 5.5 Mb */ { AH_TRUE, CCK, 5500, 0x19, 0x04, (0x80|11), 2 },
144 /* 11 Mb */ { AH_TRUE, CCK, 11000, 0x18, 0x04, (0x80|22), 3 },
158 #undef CCK macro
[all...]
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5416/
H A Dar5416_phy.c28 #define CCK IEEE80211_T_CCK macro
37 /* 1 Mb */ { AH_TRUE, CCK, 1000, 0x1b, 0x00, (0x80| 2), 0 },
38 /* 2 Mb */ { AH_TRUE, CCK, 2000, 0x1a, 0x04, (0x80| 4), 1 },
39 /* 5.5 Mb */ { AH_TRUE, CCK, 5500, 0x19, 0x04, (0x80|11), 2 },
40 /* 11 Mb */ { AH_TRUE, CCK, 11000, 0x18, 0x04, (0x80|22), 3 },
103 #undef CCK macro
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_phy.c59 #define CCK IEEE80211_T_CCK macro
72 [0] = { .phy = CCK, 1000, 0x00, B(2), 0 },/* 1 Mb */
73 [1] = { .phy = CCK, 2000, 0x04, B(4), 1 },/* 2 Mb */
74 [2] = { .phy = CCK, 5500, 0x04, B(11), 1 },/* 5.5 Mb */
75 [3] = { .phy = CCK, 11000, 0x04, B(22), 1 },/* 11 Mb */
85 [0] = { .phy = CCK, 1000, 0x00, B(2), 0 },
86 [1] = { .phy = CCK, 2000, 0x04, B(4), 1 },
87 [2] = { .phy = CCK, 5500, 0x04, B(11), 2 },
88 [3] = { .phy = CCK, 11000, 0x04, B(22), 3 },
184 #undef CCK macro
[all...]
/freebsd-9.3-release/tools/tools/net80211/wlantxtime/
H A Dwlantxtime.c54 uint8_t phy; /* CCK/OFDM/TURBO */
57 * preamble in CCK rate code */
92 #define CCK IEEE80211_T_CCK macro
105 [0] = { .phy = CCK, 1000, 0x00, B(2), 0 },/* 1 Mb */
106 [1] = { .phy = CCK, 2000, 0x04, B(4), 1 },/* 2 Mb */
107 [2] = { .phy = CCK, 5500, 0x04, B(11), 1 },/* 5.5 Mb */
108 [3] = { .phy = CCK, 11000, 0x04, B(22), 1 },/* 11 Mb */
118 [0] = { .phy = CCK, 1000, 0x00, B(2), 0 },
119 [1] = { .phy = CCK, 2000, 0x04, B(4), 1 },
120 [2] = { .phy = CCK, 550
215 #undef CCK macro
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprObjC.cpp2952 Sema::CheckedConversionKind CCK,
2960 switch (CCK) {
2970 if (CCK == Sema::CCK_OtherCast) {
3015 if (CCK == Sema::CCK_CStyleCast) {
3017 } else if (CCK == Sema::CCK_OtherCast) {
3053 Sema::CheckedConversionKind CCK) {
3086 << unsigned(CCK == Sema::CCK_ImplicitConversion) // cast|implicit
3100 (CCK != Sema::CCK_OtherCast) ? S.Diag(noteLoc, diag::note_arc_bridge)
3103 addFixitForObjCARCConversion(S, DiagB, CCK, afterLParen,
3109 (CCK
2950 addFixitForObjCARCConversion(Sema &S, DiagnosticBuilder &DiagB, Sema::CheckedConversionKind CCK, SourceLocation afterLParen, QualType castType, Expr *castExpr, Expr *realCast, const char *bridgeKeyword, const char *CFBridgeName) argument
3049 diagnoseObjCARCConversion(Sema &S, SourceRange castRange, QualType castType, ARCConversionTypeClass castACTC, Expr *castExpr, Expr *realCast, ARCConversionTypeClass exprACTC, Sema::CheckedConversionKind CCK) argument
3271 CheckObjCARCConversion(SourceRange castRange, QualType castType, Expr *&castExpr, CheckedConversionKind CCK, bool DiagnoseCFAudited) argument
3385 CheckedConversionKind CCK; local
[all...]
H A DSemaCast.cpp121 void checkObjCARCConversion(Sema::CheckedConversionKind CCK) { argument
125 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
192 Sema::CheckedConversionKind CCK,
198 Sema::CheckedConversionKind CCK,
910 Sema::CheckedConversionKind CCK,
916 = (CCK == Sema::CCK_CStyleCast || CCK == Sema::CCK_FunctionalCast);
953 tcr = TryStaticImplicitCast(Self, SrcExpr, DestType, CCK, OpRange, msg,
1423 Sema::CheckedConversionKind CCK,
1438 = (CCK
908 TryStaticCast(Sema &Self, ExprResult &SrcExpr, QualType DestType, Sema::CheckedConversionKind CCK, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, CXXCastPath &BasePath, bool ListInitialization) argument
1422 TryStaticImplicitCast(Sema &Self, ExprResult &SrcExpr, QualType DestType, Sema::CheckedConversionKind CCK, const SourceRange &OpRange, unsigned &msg, CastKind &Kind, bool ListInitialization) argument
2056 Sema::CheckedConversionKind CCK local
[all...]
H A DSemaExprCXX.cpp2583 CheckedConversionKind CCK) {
2587 Action, CCK);
2623 CCK);
2644 AA_Converting, CCK);
2673 CheckedConversionKind CCK) {
2674 bool CStyle = (CCK == CCK_CStyleCast || CCK == CCK_FunctionalCast);
2748 VK_RValue, /*BasePath=*/0, CCK).take();
2754 VK_RValue, /*BasePath=*/0, CCK).take();
2778 VK_RValue, /*BasePath=*/0, CCK)
2580 PerformImplicitConversion(Expr *From, QualType ToType, const ImplicitConversionSequence &ICS, AssignmentAction Action, CheckedConversionKind CCK) argument
2670 PerformImplicitConversion(Expr *From, QualType ToType, const StandardConversionSequence& SCS, AssignmentAction Action, CheckedConversionKind CCK) argument
2880 CheckObjCARCConversion(SourceRange(), ToType, From, CCK); local
[all...]
H A DSema.cpp277 CheckedConversionKind CCK) {
274 ImpCastExprToType(Expr *E, QualType Ty, CastKind Kind, ExprValueKind VK, const CXXCastPath *BasePath, CheckedConversionKind CCK) argument
H A DSemaInit.cpp5934 Sema::CheckedConversionKind CCK local
5941 getAssignmentAction(Entity), CCK);
/freebsd-9.3-release/sys/dev/ral/
H A Drt2860.c1116 * fallback from OFDM to CCK.
2262 #define CCK(mcs) (mcs) macro
2275 CCK(2) << 12 | /* 11->5.5 */
2276 CCK(1) << 8 | /* 5.5-> 2 */
2277 CCK(0) << 4 | /* 2-> 1 */
2278 CCK(0)); /* 1-> 1 */
2280 #undef CCK macro
2911 /* CCK frames don't require protection */
/freebsd-9.3-release/sys/dev/usb/wlan/
H A Dif_run.c2578 * because we do not allow rate fallback from OFDM to CCK.
5001 /* CCK frames don't require protection */
5129 #define CCK(mcs) (mcs) macro
5142 CCK(2) << 12 | /* 11->5.5 */
5143 CCK(1) << 8 | /* 5.5-> 2 */
5144 CCK(0) << 4 | /* 2-> 1 */
5145 CCK(0)); /* 1-> 1 */
5147 #undef CCK macro
5318 /* Initialize Rx CCK/OFDM frequency offset report. */
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h7142 CheckedConversionKind CCK
7358 CheckedConversionKind CCK
7363 CheckedConversionKind CCK);
7516 CheckedConversionKind CCK,

Completed in 375 milliseconds