Searched refs:numElem (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_utfconv.c835 getmappedvalue32(const unicode_mappings32 *theTable, u_int32_t numElem, argument
840 if ((character < theTable[0]._key) || (character > theTable[numElem-1]._key))
844 q = p + (numElem-1);
863 getmappedvalue16(const unicode_mappings16 *theTable, u_int32_t numElem, argument
868 if ((character < theTable[0]._key) || (character > theTable[numElem-1]._key))
872 q = p + (numElem-1);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Vectorize/
H A DBBVectorize.cpp386 unsigned numElem; local
388 numElem = VTy->getNumElements();
390 numElem = 1;
394 numElem += VTy->getNumElements();
396 numElem += 1;
399 return VectorType::get(STy, numElem);
1670 unsigned numElem = VArgType->getNumElements(); local
1735 SmallVector<std::pair<int, int>, 8> II(numElem);
1781 if (I1Elem == numElem) {
1783 for (unsigned i = 0; i < numElem;
1946 unsigned numElem = cast<VectorType>(VArgType)->getNumElements(); local
2039 unsigned numElem = VType->getNumElements(); local
[all...]
/macosx-10.10.1/smb-759.0/kernel/netsmb/
H A Dsmb_converter.c221 UCSTo8BitEncoding(const UCSTo8BitCharMap *theTable, int numElem, argument
226 if ((character < theTable[0]._u) || (character > theTable[numElem-1]._u)) {
230 q = p + (numElem-1);
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclProc.c2689 int numElem;
2692 (TclListObjGetElements(interp, lambdaPtr, &numElem,
2693 &elemPtr) == TCL_OK && numElem == 1)) {
2665 int numElem; local
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dutf8mac.h1379 getmappedvalue32(const unicode_mappings32 *theTable, u_int32_t numElem, argument
1384 if ((character < theTable[0]._key) || (character > theTable[numElem-1]._key))
1388 q = p + (numElem-1);
1407 getmappedvalue16(const unicode_mappings16 *theTable, u_int32_t numElem, argument
1412 if ((character < theTable[0]._key) || (character > theTable[numElem-1]._key))
1416 q = p + (numElem-1);
/macosx-10.10.1/hfs-285/hfs_japanese/hfs_japanese.kmodproj/
H A DJapaneseConverter.c21 static __inline__ UInt16 CFStringEncodingUnicodeTo16BitEncodingWithArray##theSize(const CFStringEncodingUnicodeTo16BitCharMapWithArray##theSize *theTable, UInt32 numElem, UniChar character) {\
23 if ((character < theTable[0].startChar) || (character > theTable[numElem-1].startChar + theSize)) {\
27 q = p + (numElem-1);\
1996 static inline Boolean CFStringEncodingUnicodeTo8BitEncoding(const CFStringEncodingUnicodeTo8BitCharMap *theTable, UInt32 numElem, UniChar character, UInt8 *ch) { argument
1999 if ((character < theTable[0]._u) || (character > theTable[numElem-1]._u)) {
2003 q = p + (numElem-1);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/ARM/
H A DARMISelLowering.cpp7268 unsigned numElem = VT.getVectorNumElements(); local
7270 case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
7271 case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
7272 case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;

Completed in 318 milliseconds