/external/eigen/doc/snippets/ |
H A D | Tutorial_AdvancedInitialization_ThreeWays.cpp | 1 const int size = 6; variable 2 MatrixXd mat1(size, size); 3 mat1.topLeftCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2); 4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/ [all...] |
/external/freetype/include/freetype/ |
H A D | ftsizes.h | 5 /* FreeType size objects management (specification). */ 59 /* pixel-size dependent information, available in the `face->size' */ 67 /* modify the contents of the current `active' size; you thus need */ 83 /* Create a new size object from a given face object. */ 89 /* asize :: A handle to a new size object. */ 95 /* You need to call @FT_Activate_Size in order to select the new size */ 101 FT_Size* size ); 110 /* Discard a given size object. Note that @FT_Done_Face */ 111 /* automatically discards all size object 121 FT_Done_Size( FT_Size size ); variable 149 FT_Activate_Size( FT_Size size ); variable [all...] |
/external/v8/test/mjsunit/ |
H A D | string-externalize.js | 30 var size = 1024; variable 36 for (var i = 0; i < size; i++) {
|
/external/clang/test/CodeGen/ |
H A D | vla-3.c | 5 void vlaalign(int size) argument 7 char __attribute__((aligned(16))) tmp[size+32]; 8 char tmp2[size+16];
|
/external/clang/test/Sema/ |
H A D | freemain.c | 5 void* allocate(long size); 7 void* main(void* context, long size) { argument 8 if (context) return allocate(size);
|
/external/compiler-rt/lib/asan/lit_tests/Linux/ |
H A D | interception_malloc_test.cc | 15 extern "C" void *__interceptor_malloc(size_t size); 16 extern "C" void *malloc(size_t size) { argument 18 return __interceptor_malloc(size);
|
/external/dropbear/libtommath/ |
H A D | bn_mp_init_size.c | 18 /* init an mp_init for a given size */ 19 int mp_init_size (mp_int * a, int size) argument 23 /* pad size so there are always extra digits */ 24 size += (MP_PREC * 2) - (size % MP_PREC); 27 a->dp = OPT_CAST(mp_digit) XMALLOC (sizeof (mp_digit) * size); 34 a->alloc = size; 38 for (x = 0; x < size; x++) {
|
H A D | bn_mp_unsigned_bin_size.c | 18 /* get the size for an unsigned equivalent */ 21 int size = mp_count_bits (a); local 22 return (size / 8 + ((size & 7) != 0 ? 1 : 0));
|
H A D | bn_mp_grow.c | 19 int mp_grow (mp_int * a, int size) argument 24 /* if the alloc size is smaller alloc more ram */ 25 if (a->alloc < size) { 27 size += (MP_PREC * 2) - (size % MP_PREC); 35 tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * size); 46 a->alloc = size;
|
/external/eigen/bench/btl/generic_bench/init/ |
H A D | init_vector.hh | 28 void init_vector(Vector & X, int size){ argument 30 X.resize(size); 32 for (int i=0;i<X.size();i++){
|
/external/eigen/test/eigen2/ |
H A D | eigen2_bug_132.cpp | 13 int size = 100; local 14 MatrixXd A(size, size); 15 VectorXd b(size), c(size);
|
/external/elfutils/src/ |
H A D | arlib2.c | 44 size_t size = obstack_object_size (&symtab.longnamesob); local 49 return size - sizeof (struct ar_hdr);
|
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
H A D | SDL_atarimxalloc.c | 40 void *Atari_SysMalloc(Uint32 size, Uint16 alloc_type) argument 48 return (void *) Mxalloc(size, alloc_type); 50 return (void *) Malloc(size);
|
/external/quake/quake/src/WinQuake/ |
H A D | snd_next.cpp | 28 int size;
local 30 size = 16384 + sizeof(dma_t);
31 shm = malloc (size);
32 memset((void*)shm, 0, size);
|
/external/skia/src/gpu/gl/debug/ |
H A D | GrBufferObj.cpp | 11 void GrBufferObj::allocate(GrGLint size, const GrGLchar *dataPtr) { argument 12 GrAlwaysAssert(size >= 0); 17 fSize = size; 18 fDataPtr = new GrGLchar[size];
|
/external/skia/src/utils/ |
H A D | SkCityHash.cpp | 17 uint32_t SkCityHash::Compute32(const char *data, size_t size) { argument 18 return CityHash32(data, size); 21 uint64_t SkCityHash::Compute64(const char *data, size_t size) { argument 22 return CityHash64(data, size);
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-swapelements.js | 36 var size = 23; variable 37 var array1 = new Array(size); 47 for (var i = 0; i < size; i++) {
|
/external/webkit/Source/JavaScriptCore/wtf/ |
H A D | ByteArray.cpp | 32 PassRefPtr<ByteArray> ByteArray::create(size_t size) argument 34 unsigned char* buffer = new unsigned char[size + OBJECT_OFFSETOF(ByteArray, m_data)]; 36 return adoptRef(new (buffer) ByteArray(size));
|
/external/webkit/Source/WebKit/chromium/src/ |
H A D | CompositionUnderlineVectorBuilder.cpp | 43 size_t size = underlines.size(); local 44 reserveCapacity(size); 45 for (size_t i = 0; i < size; ++i)
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
H A D | InjectedBundleBackForwardListItem.cpp | 38 size_t size = children.size(); local 39 Vector<RefPtr<APIObject> > vector(size); 40 for (size_t i = 0; i < size; ++i)
|
/external/chromium/base/ |
H A D | sys_info_openbsd.cc | 17 size_t size = sizeof(ncpu); local 18 if (sysctl(mib, 2, &ncpu, &size, NULL, 0) == -1) {
|
/external/chromium/chrome/browser/ |
H A D | icon_loader_win.cc | 13 #include "ui/gfx/size.h" 16 int size = 0; local 19 size = SHGFI_SMALLICON; 22 size = 0; 25 size = SHGFI_LARGEICON; 33 SHGFI_ICON | size | SHGFI_USEFILEATTRIBUTES))
|
/external/dropbear/libtomcrypt/src/pk/pkcs1/ |
H A D | pkcs_1_i2osp.c | 33 unsigned long size; local 35 size = mp_unsigned_bin_size(n); 37 if (size > modulus_len) { 43 return mp_to_unsigned_bin(n, out+(modulus_len-size));
|
/external/eigen/failtest/ |
H A D | map_nonconst_ctor_on_const_ptr_1.cpp | 11 void foo(CV_QUALIFIER float *ptr, DenseIndex size){ argument 12 Map<ArrayXf> m(ptr, size);
|
/external/hyphenation/ |
H A D | hnjalloc.c | 42 hnj_malloc (int size) argument 46 p = malloc (size); 49 fprintf (stderr, "can't allocate %d bytes\n", size); 56 hnj_realloc (void *p, int size) argument 58 p = realloc (p, size); 61 fprintf (stderr, "can't allocate %d bytes\n", size);
|