/external/eigen/Eigen/src/SparseCore/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/SparseCore COMPONENT Devel
|
/external/eigen/Eigen/src/StlSupport/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/StlSupport COMPONENT Devel
|
/external/eigen/Eigen/src/SuperLUSupport/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/SuperLUSupport COMPONENT Devel
|
/external/eigen/Eigen/src/UmfPackSupport/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/UmfPackSupport COMPONENT Devel
|
/external/eigen/Eigen/src/misc/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/misc COMPONENT Devel
|
/external/eigen/Eigen/src/plugins/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/plugins COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/AutoDiff COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/BVH/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/BVH COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/FFT/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/FFT COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/IterativeSolvers COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/KroneckerProduct COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/MatrixFunctions COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/MoreVectorization/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/MoreVectorization COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/NonLinearOptimization COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/NumericalDiff/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/NumericalDiff COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/Polynomials/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/Polynomials COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/Skyline COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/SparseExtra COMPONENT Devel
|
/external/eigen/unsupported/Eigen/src/Splines/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen/src/Splines COMPONENT Devel
|
/external/webkit/Source/WebCore/platform/graphics/ |
GraphicsContext3D.cpp | 353 void unpackRGBA8ToRGBA8(const uint8_t* source, uint8_t* destination) 355 destination[0] = source[0]; 356 destination[1] = source[1]; 357 destination[2] = source[2]; 358 destination[3] = source[3]; 361 void unpackRGBA16LittleToRGBA8(const uint16_t* source, uint8_t* destination) 363 destination[0] = convertColor16LittleTo8(source[0]); 364 destination[1] = convertColor16LittleTo8(source[1]); 365 destination[2] = convertColor16LittleTo8(source[2]); 366 destination[3] = convertColor16LittleTo8(source[3]) 1231 uint8_t* destination = static_cast<uint8_t*>(destinationData); local 1309 uint16_t* destination = static_cast<uint16_t*>(destinationData); local 1324 uint16_t* destination = static_cast<uint16_t*>(destinationData); local 1339 uint16_t* destination = static_cast<uint16_t*>(destinationData); local 1368 float* destination = static_cast<float*>(destinationData); local [all...] |
/external/v8/src/x64/ |
lithium-gap-resolver-x64.cc | 72 // the same as the destination, the destination is ignored and 94 // Clear this move's destination to indicate a pending move. The actual 95 // destination is saved in a stack-allocated local. Recursion may allow 98 LOperand* destination = moves_[index].destination(); local 103 // as this one's destination blocks this one so recursively perform all 107 if (other_move.Blocks(destination) && !other_move.IsPending()) { 113 // not be swapped). Since this move's destination is B and there is 122 // pending, so restore its destination 153 LOperand* destination = moves_[i].destination(); local 167 LOperand* destination = moves_[index].destination(); local 243 LOperand* destination = moves_[index].destination(); local [all...] |
/external/eigen/Eigen/src/Core/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/Core COMPONENT Devel
|
/external/llvm/utils/llvm-lit/ |
CMakeLists.txt | 8 DESTINATION bin
|
/packages/apps/Gallery2/jni/filters/ |
geometry.c | 20 __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 30 memcpy(destination + temp - i, source + i, bytes_to_copy); 34 __inline__ void flipHorizontal(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 46 memcpy(destination + temp - j, source + i + j, cpy_bytes); 51 __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 58 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight); 63 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); 67 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); 73 __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 84 memcpy(destination + column_disp + row_disp , source + j * srcWidth + i, cpy_bytes) 131 char* destination = 0; local 144 char* destination = 0; local 155 char* destination = 0; local 166 char* destination = 0; local [all...] |
/external/v8/src/ia32/ |
lithium-gap-resolver-ia32.cc | 77 // the same as the destination, the destination is ignored and 99 // Clear this move's destination to indicate a pending move. The actual 100 // destination is saved on the side. 102 LOperand* destination = moves_[index].destination(); local 107 // as this one's destination blocks this one so recursively perform all 111 if (other_move.Blocks(destination) && !other_move.IsPending()) { 117 // not be swapped). Since this move's destination is B and there is 126 // pending, so restore its destination 157 LOperand* destination = move.destination(); local 171 LOperand* destination = moves_[index].destination(); local 219 LOperand* destination = moves_[i].destination(); local 278 LOperand* destination = moves_[index].destination(); local 360 LOperand* destination = moves_[index].destination(); local [all...] |