Home
last modified time | relevance | path

Searched refs:pdest (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/OrderingMethods/
DEigen_Colamd.h1720 Index *pdest ; /* destination pointer */ in garbage_collection() local
1728 pdest = &A[0] ; in garbage_collection()
1736 COLAMD_ASSERT (pdest <= psrc) ; in garbage_collection()
1737 Col [c].start = (Index) (pdest - &A [0]) ; in garbage_collection()
1744 *pdest++ = r ; in garbage_collection()
1747 Col [c].length = (Index) (pdest - &A [Col [c].start]) ; in garbage_collection()
1778 psrc = pdest ; in garbage_collection()
1793 COLAMD_ASSERT (pdest <= psrc) ; in garbage_collection()
1794 Row [r].start = (Index) (pdest - &A [0]) ; in garbage_collection()
1801 *pdest++ = c ; in garbage_collection()
[all …]
/external/boringssl/src/crypto/x509/
Dx509_vpm.c340 static int int_x509_param_set1(char **pdest, size_t *pdestlen, in int_x509_param_set1() argument
361 if (*pdest) in int_x509_param_set1()
362 OPENSSL_free(*pdest); in int_x509_param_set1()
363 *pdest = tmp; in int_x509_param_set1()
/external/icu/icu4c/source/i18n/
Ddecimfmt.cpp757 static void _copy_ptr(T** pdest, const T* source) { in _copy_ptr() argument
759 delete *pdest; in _copy_ptr()
760 *pdest = NULL; in _copy_ptr()
761 } else if (*pdest == NULL) { in _copy_ptr()
762 *pdest = new T(*source); in _copy_ptr()
764 **pdest = *source; in _copy_ptr()
769 static void _clone_ptr(T** pdest, const T* source) { in _clone_ptr() argument
770 delete *pdest; in _clone_ptr()
772 *pdest = NULL; in _clone_ptr()
774 *pdest = static_cast<T*>(source->clone()); in _clone_ptr()
/external/v8/tools/profviz/
Dgnuplot-4.6.3-emscripten.js2704 function _strncat(pdest, psrc, num) { argument
2705 var len = _strlen(pdest);
2708 HEAP8[((pdest+len+i)|0)]=HEAP8[((psrc+i)|0)];
2709 if (HEAP8[(((pdest)+(len+i))|0)] == 0) break;
2712 HEAP8[(((pdest)+(len+i))|0)]=0
2716 return pdest;