Home
last modified time | relevance | path

Searched refs:nUsedFPR (Results 1 – 3 of 3) sorted by relevance

/trunk/main/bridges/source/cpp_uno/s5abi_macosx_aarch64/
H A Dabi.cxx129 bool classifyAggregate( typelib_TypeDescriptionReference *pTypeRef, int &nUsedGPR, int &nUsedFPR ) in classifyAggregate() argument
137 nUsedFPR = count; // one v register per member in classifyAggregate()
155 nUsedFPR = 0; in classifyAggregate()
161 …ent( typelib_TypeDescriptionReference *pTypeRef, bool /*bInReturn*/, int &nUsedGPR, int &nUsedFPR ) in examine_argument() argument
164 nUsedFPR = 0; in examine_argument()
186 nUsedFPR = 1; in examine_argument()
202 return classifyAggregate( pTypeRef, nUsedGPR, nUsedFPR ); in examine_argument()
224 int nUsedFPR = 0; in fill_struct() local
225 if ( !examine_argument( pTypeRef, true, nUsedGPR, nUsedFPR ) ) in fill_struct()
233 if ( nUsedFPR > 0 ) in fill_struct()
[all …]
H A Dcpp2uno.cxx124 int nUsedFPR = 0; in cpp2uno_call() local
125 … bool bFitsRegisters = aarch64::examine_argument( rParam.pTypeRef, false, nUsedGPR, nUsedFPR ); in cpp2uno_call()
129 …OSL_ASSERT( bFitsRegisters && ( ( nUsedFPR == 1 && nUsedGPR == 0 ) || ( nUsedFPR == 0 && nUsedGPR … in cpp2uno_call()
131 if ( nUsedFPR == 1 ) in cpp2uno_call()
H A Dabi.hxx63 …gument( typelib_TypeDescriptionReference *pTypeRef, bool bInReturn, int &nUsedGPR, int &nUsedFPR );