Home
last modified time | relevance | path

Searched refs:indexS (Results 1 – 18 of 18) sorted by relevance

/third_party/cmsis/CMSIS/DSP/Source/ControllerFunctions/
Darm_sin_cos_f32.c80 uint16_t indexS, indexC; /* Index variable */ in arm_sin_cos_f32() local
98 indexS = ((uint16_t)findex) & 0x1ff; in arm_sin_cos_f32()
99 indexC = (indexS + (FAST_MATH_TABLE_SIZE / 4)) & 0x1ff; in arm_sin_cos_f32()
102 fract = findex - (float32_t) indexS; in arm_sin_cos_f32()
107 d1 = -sinTable_f32[indexS ]; in arm_sin_cos_f32()
108 d2 = -sinTable_f32[indexS+1]; in arm_sin_cos_f32()
123 f1 = sinTable_f32[indexS ]; in arm_sin_cos_f32()
124 f2 = sinTable_f32[indexS+1]; in arm_sin_cos_f32()
Darm_sin_cos_q31.c57 uint16_t indexS, indexC; /* Index variable */ in arm_sin_cos_q31() local
63 indexS = (uint32_t)theta >> CONTROLLER_Q31_SHIFT; in arm_sin_cos_q31()
64 indexC = (indexS + 128) & 0x1ff; in arm_sin_cos_q31()
67 fract = (theta - (indexS << CONTROLLER_Q31_SHIFT)) << 8; in arm_sin_cos_q31()
72 d1 = -sinTable_q31[indexS ]; in arm_sin_cos_q31()
73 d2 = -sinTable_q31[indexS+1]; in arm_sin_cos_q31()
90 f1 = sinTable_q31[indexS ]; in arm_sin_cos_q31()
91 f2 = sinTable_q31[indexS+1]; in arm_sin_cos_q31()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Duresdata.h450 res_getArrayItem(const ResourceData *pResData, Resource array, int32_t indexS);
453 res_getTableItemByIndex(const ResourceData *pResData, Resource table, int32_t indexS, const char **…
456 res_getTableItemByKey(const ResourceData *pResData, Resource table, int32_t *indexS, const char* * …
Dresbund.cpp335 UnicodeString ResourceBundle::getStringEx(int32_t indexS, UErrorCode& status) const { in getStringEx() argument
337 const UChar* r = ures_getStringByIndex(fResource, indexS, &len, &status); in getStringEx()
Duresbund.cpp1629 U_CAPI const UChar* U_EXPORT2 ures_getStringByIndex(const UResourceBundle *resB, int32_t indexS, in… in ures_getStringByIndex() argument
1641 if(indexS >= 0 && resB->fSize > indexS) { in ures_getStringByIndex()
1649 r = res_getTableItemByIndex(&(resB->fResData), resB->fRes, indexS, &key); in ures_getStringByIndex()
1653 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1656 r = res_getArrayItem(&(resB->fResData), resB->fRes, indexS); in ures_getStringByIndex()
1660 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1662 return ures_getStringWithAlias(resB, resB->fRes, indexS, len, status); in ures_getStringByIndex()
/third_party/skia/third_party/externals/icu/source/common/
Duresdata.h456 res_getArrayItem(const ResourceData *pResData, Resource array, int32_t indexS);
459 res_getTableItemByIndex(const ResourceData *pResData, Resource table, int32_t indexS, const char **…
462 res_getTableItemByKey(const ResourceData *pResData, Resource table, int32_t *indexS, const char* * …
Dresbund.cpp336 UnicodeString ResourceBundle::getStringEx(int32_t indexS, UErrorCode& status) const { in getStringEx() argument
338 const UChar* r = ures_getStringByIndex(fResource, indexS, &len, &status); in getStringEx()
Duresbund.cpp1657 U_CAPI const UChar* U_EXPORT2 ures_getStringByIndex(const UResourceBundle *resB, int32_t indexS, in… in ures_getStringByIndex() argument
1669 if(indexS >= 0 && resB->fSize > indexS) { in ures_getStringByIndex()
1677 r = res_getTableItemByIndex(&(resB->fResData), resB->fRes, indexS, &key); in ures_getStringByIndex()
1681 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1684 r = res_getArrayItem(&(resB->fResData), resB->fRes, indexS); in ures_getStringByIndex()
1688 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1690 return ures_getStringWithAlias(resB, resB->fRes, indexS, len, status); in ures_getStringByIndex()
/third_party/icu/icu4c/source/common/unicode/
Dures.h641 int32_t indexS,
856 ures_getUnicodeStringByIndex(const UResourceBundle *resB, int32_t indexS, UErrorCode* status) { in ures_getUnicodeStringByIndex() argument
859 const UChar* r = ures_getStringByIndex(resB, indexS, &len, status); in ures_getUnicodeStringByIndex()
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dures.h644 int32_t indexS,
859 ures_getUnicodeStringByIndex(const UResourceBundle *resB, int32_t indexS, UErrorCode* status) { in ures_getUnicodeStringByIndex() argument
862 const UChar* r = ures_getStringByIndex(resB, indexS, &len, status); in ures_getUnicodeStringByIndex()
/third_party/node/deps/icu-small/source/common/unicode/
Dures.h644 int32_t indexS,
859 ures_getUnicodeStringByIndex(const UResourceBundle *resB, int32_t indexS, UErrorCode* status) { in ures_getUnicodeStringByIndex() argument
862 const UChar* r = ures_getStringByIndex(resB, indexS, &len, status); in ures_getUnicodeStringByIndex()
/third_party/icu/icu4c/source/common/
Duresdata.h456 res_getArrayItem(const ResourceData *pResData, Resource array, int32_t indexS);
459 res_getTableItemByIndex(const ResourceData *pResData, Resource table, int32_t indexS, const char **…
462 res_getTableItemByKey(const ResourceData *pResData, Resource table, int32_t *indexS, const char* * …
Dresbund.cpp336 UnicodeString ResourceBundle::getStringEx(int32_t indexS, UErrorCode& status) const { in getStringEx() argument
338 const UChar* r = ures_getStringByIndex(fResource, indexS, &len, &status); in getStringEx()
Duresbund.cpp1648 U_CAPI const UChar* U_EXPORT2 ures_getStringByIndex(const UResourceBundle *resB, int32_t indexS, in… in ures_getStringByIndex() argument
1660 if(indexS >= 0 && resB->fSize > indexS) { in ures_getStringByIndex()
1668 r = res_getTableItemByIndex(&(resB->fResData), resB->fRes, indexS, &key); in ures_getStringByIndex()
1672 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1675 r = res_getArrayItem(&(resB->fResData), resB->fRes, indexS); in ures_getStringByIndex()
1679 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1681 return ures_getStringWithAlias(resB, resB->fRes, indexS, len, status); in ures_getStringByIndex()
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/
Dures.h641 int32_t indexS,
856 ures_getUnicodeStringByIndex(const UResourceBundle *resB, int32_t indexS, UErrorCode* status) { in ures_getUnicodeStringByIndex() argument
859 const UChar* r = ures_getStringByIndex(resB, indexS, &len, status); in ures_getUnicodeStringByIndex()
/third_party/node/deps/icu-small/source/common/
Duresdata.h458 res_getArrayItem(const ResourceData *pResData, Resource array, int32_t indexS);
461 res_getTableItemByIndex(const ResourceData *pResData, Resource table, int32_t indexS, const char **…
464 res_getTableItemByKey(const ResourceData *pResData, Resource table, int32_t *indexS, const char* * …
Dresbund.cpp336 UnicodeString ResourceBundle::getStringEx(int32_t indexS, UErrorCode& status) const { in getStringEx() argument
338 const UChar* r = ures_getStringByIndex(fResource, indexS, &len, &status); in getStringEx()
Duresbund.cpp1708 U_CAPI const UChar* U_EXPORT2 ures_getStringByIndex(const UResourceBundle *resB, int32_t indexS, in… in ures_getStringByIndex() argument
1720 if(indexS >= 0 && resB->fSize > indexS) { in ures_getStringByIndex()
1728 r = res_getTableItemByIndex(&resB->getResData(), resB->fRes, indexS, &key); in ures_getStringByIndex()
1732 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1735 r = res_getArrayItem(&resB->getResData(), resB->fRes, indexS); in ures_getStringByIndex()
1739 return ures_getStringWithAlias(resB, r, indexS, len, status); in ures_getStringByIndex()
1741 return ures_getStringWithAlias(resB, resB->fRes, indexS, len, status); in ures_getStringByIndex()