Searched refs:B (Results 1 – 25 of 48) sorted by relevance
12
289 inline double db_ScalarProduct4(const double A[4],const double B[4]) in db_ScalarProduct4()291 return(A[0]*B[0]+A[1]*B[1]+A[2]*B[2]+A[3]*B[3]); in db_ScalarProduct4()296 inline double db_ScalarProduct7(const double A[7],const double B[7]) in db_ScalarProduct7()298 return(A[0]*B[0]+A[1]*B[1]+A[2]*B[2]+ in db_ScalarProduct7()299 A[3]*B[3]+A[4]*B[4]+A[5]*B[5]+ in db_ScalarProduct7()300 A[6]*B[6]); in db_ScalarProduct7()305 inline double db_ScalarProduct9(const double A[9],const double B[9]) in db_ScalarProduct9()307 return(A[0]*B[0]+A[1]*B[1]+A[2]*B[2]+ in db_ScalarProduct9()308 A[3]*B[3]+A[4]*B[4]+A[5]*B[5]+ in db_ScalarProduct9()309 A[6]*B[6]+A[7]*B[7]+A[8]*B[8]); in db_ScalarProduct9()[all …]
123 inline void db_RowOperation3(double A[3],const double B[3],double mult) in db_RowOperation3()125 *A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(*B++); in db_RowOperation3()131 inline void db_RowOperation7(double A[7],const double B[7],double mult) in db_RowOperation7()133 …*A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(… in db_RowOperation7()134 *A++ -= mult*(*B++); *A++ -= mult*(*B++); in db_RowOperation7()140 inline void db_RowOperation9(double A[9],const double B[9],double mult) in db_RowOperation9()142 …*A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(… in db_RowOperation9()143 *A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(*B++); *A++ -= mult*(*B++); in db_RowOperation9()150 inline void db_Swap7(double A[7],double B[7]) in db_Swap7()153 …temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ … in db_Swap7()[all …]
319 const double *B; in db_NullVectorOrthonormal6x7() local333 B=A+i; in db_NullVectorOrthonormal6x7()334 db_MultiplyScalarCopy7(x,A,-B[0]); in db_NullVectorOrthonormal6x7()335 db_RowOperation7(x,A+7 ,B[7]); in db_NullVectorOrthonormal6x7()336 db_RowOperation7(x,A+14,B[14]); in db_NullVectorOrthonormal6x7()337 db_RowOperation7(x,A+21,B[21]); in db_NullVectorOrthonormal6x7()338 db_RowOperation7(x,A+28,B[28]); in db_NullVectorOrthonormal6x7()339 db_RowOperation7(x,A+35,B[35]); in db_NullVectorOrthonormal6x7()348 const double *B; in db_NullVectorOrthonormal8x9() local364 B=A+i; in db_NullVectorOrthonormal8x9()[all …]
60 inline void db_MultiplyMatricesAB(double **C,const double * const *A,const double * const *B,int ar… in db_MultiplyMatricesAB() argument68 for(k=0;k<acols;k++) acc+=A[i][k]*B[k][j]; in db_MultiplyMatricesAB()73 …tiplyMatricesAtB(double **Cu,const double * const *At,const double * const *B,int arows,int acols,… in db_UpperMultiplyMatricesAtB() argument81 for(k=0;k<acols;k++) acc+=At[k][i]*B[k][j]; in db_UpperMultiplyMatricesAtB()
14 cL�Py2��W��_,ݨ��l�*��z4m:����7<k֎�Bl���$/�Pe��0i����=���ϋ������+�ar�� f����Go�'�5���vb�…17 g!d���+ߏ�������h�̌�f��Q����z+�ȪkO�q���:$B�_�;��䶢���o�s�e}�J�)��h)ΞD[�&Z�/�gY�MN…19 …0��$�M�5�����y��I"���k���E�g��r�0�mr�+����!|J3��A���j���#ɿ�f*'���s~>�f��[d̞'B�e驹�a��W�-26 �R�u�fo�?��J⁴���-{��87o(��d]aRK��]��� K纫�|T�s�->^v���������D�6�B�j���;���YN��7��J�ͥ�y…28 0�d�M�B�=h��@��uu�@��%ə&�ĭ�cyo�J%\'/+7�,�����b��&��FKf8��~9��0�>'<u��s]��}��+�LK&�(�…30 …DGAT& -��y�c#�F��Bӿ�����6�P�g��#���K�{У��,��x�ԫ�UlN���M��F���r����@�삟��������opiR���…34 [�o�R(_V�'.��ߋ��Y�M�Gߪ��(j����B���� f�%�|��?�4��o f֘4����#C�,��NP1ip��4�2:��>vǝ�Ù@����Q�…35 …jz�ս�'��ߋ�p�g�j�������*�9T�\��j�wZ9��ǻP���{~8ج&z��ᝪw�V���7��������?�B���(��|���'��Ɔ%y�…39 ���㉌������E�xj��V��&CT�B�J�z�(Z4)�u'�q(nNq¬�`[�41 �Zko�#�2�eOV0� �n��<��`mA��^�P1("=>�$B"�1$���v%�ʦ��F~o�_$(��:QcG<Pm�w֥�A�:��d��rV�����7[all …]
101 template <typename B, typename D> struct IsBaseOf102 : BoolType< ::std::is_base_of<B,D>::value> {};106 template<typename B, typename D> struct IsBaseOfImpl {107 RAPIDJSON_STATIC_ASSERT(sizeof(B) != 0);115 static No Check(const B*, int);118 operator const B*() const;125 template <typename B, typename D> struct IsBaseOf126 : OrExpr<IsSame<B, D>, BoolExpr<IsBaseOfImpl<B, D> > >::Type {};
21 public abstract class NowOrLaterWrapper<A, B> implements NowOrLater<B> {29 public void getLater(final Consumer<? super B> consumer) { in getLater()36 public B getNow() { in getNow()49 public abstract B get(A value); in get()
33 float R, G, B; in JNIFUNCF() local41 B = b; in JNIFUNCF()43 float Rc = R * (Rt + S) + G * Gt + B * Bt; in JNIFUNCF()44 float Gc = R * Rt + G * (Gt + S) + B * Bt; in JNIFUNCF()45 float Bc = R * Rt + G * Gt + B * (Bt + S); in JNIFUNCF()
35 float R, G, B; in JNIFUNCF() local50 B = b; in JNIFUNCF()52 float Rc = R * (Rt + S) + G * Gt + B * Bt; in JNIFUNCF()53 float Gc = R * Rt + G * (Gt + S) + B * Bt; in JNIFUNCF()54 float Bc = R * Rt + G * Gt + B * (Bt + S); in JNIFUNCF()
32 static const float B = 0.24f; in getSweetSpotFactor() local54 return (A * (R1 - x) + B * (x - R0)) / (R1 - R0); in getSweetSpotFactor()56 return (B * (R2 - x) + C * (x - R1)) / (R2 - R1); in getSweetSpotFactor()
492 static <A, B> Set<B> mapIntoSet(A[] in, Fn<A, B> fn) { in mapIntoSet()493 Set<B> out = new HashSet<>(in.length); in mapIntoSet()504 interface Fn<A,B> {505 B call(A a) throws Exception; in call()
839 private final <A, B, R> void testBinaryOperator( in testBinaryOperator()840 BiFunction<LiveData<A>, LiveData<B>, LiveData<R>> op, in testBinaryOperator() argument841 Pair<Pair<LiveData<A>, LiveData<B>>, R>... args) { in testBinaryOperator() argument859 private final <A, B> void checkUninitializedBinary( in checkUninitializedBinary()860 BiFunction<LiveData<A>, LiveData<B>, LiveData<?>> op, in checkUninitializedBinary() argument861 Pair<LiveData<A>, LiveData<B>>... args) { in checkUninitializedBinary()862 for (Pair<LiveData<A>, LiveData<B>> arg : args) { in checkUninitializedBinary()
85 B, enumConstant341 if (encoding == Encoding.B) { in encodeEncodedWord()624 return percentage > 30 ? Encoding.B : Encoding.Q; in determineEncoding()
51 unsigned char B = (unsigned char)clamp(Bf, 0.0f, 255.0f); in yuvToRgbx() local55 (B << 16) | in yuvToRgbx()
59 unsigned char B = (unsigned char)clamp(Bf, 0.0f, 255.0f); in yuvToRgbx() local63 ((B & 0xFF) << 16) | in yuvToRgbx()
143 template <typename A, typename B> 144 void TestEqual(const A& a, const B& b) { in TestEqual()151 template <typename A, typename B> 152 void TestUnequal(const A& a, const B& b) { in TestUnequal()
1dictionary=main:de,locale=de,description=Deutsch,date=1414726263, ...
461 final String B = "puppiez"; in testEtagChanged() local
50 gid1: "4B"2876 carrier_name: "B-Mobile of Bhutan Telecom"4530 carrier_name: "NS Railinfrabeheer B.V."9787 carrier_name: "B-Mobile"
115 …f the [C++ swap with temporary idiom](https://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Clear-and-…
172 2. Character Tabulation (`U+000B`)
50 gid1: "4B"2865 carrier_name: "B-Mobile of Bhutan Telecom"4468 carrier_name: "NS Railinfrabeheer B.V."
535 public static final short B = 6; field
538 public static final short B = 6; field