Searched defs:size (Results 1 - 25 of 7454) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/freetype/include/freetype/
H A Dftsizes.h5 /* 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/chromium_org/ui/gfx/
H A Dscreen_unittest.cc13 const gfx::Size size = local
14 gfx::Screen::GetNativeScreen()->GetPrimaryDisplay().size();
15 EXPECT_GE(size.width(), 1);
16 EXPECT_GE(size.height(), 1);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-319835.js32 var size = 0x20000; variable
33 var a = new Float64Array(size);
49 for (var i = -0x20000000; i < -0x20000000 + size; i++) {
H A Dregress-swapelements.js36 var size = 23; variable
37 var array1 = new Array(size);
47 for (var i = 0; i < size; i++) {
/external/chromium_org/v8/test/mjsunit/
H A Dstring-externalize.js30 var size = 1024; variable
36 for (var i = 0; i < size; i++) {
/external/eigen/doc/snippets/
H A DTutorial_AdvancedInitialization_ThreeWays.cpp1 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/
H A Dftsizes.h5 /* 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/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftsizes.h5 /* 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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftsizes.h5 /* 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/chromium_org/chrome/browser/ui/window_sizer/
H A Dwindow_sizer_aura.cc14 gfx::Point WindowSizer::GetDefaultPopupOrigin(const gfx::Size& size, argument
/external/chromium_org/components/nacl/browser/
H A Dnacl_process_host_unittest.cc10 size_t size = 1 << 20; // 1 MB local
11 void* addr = nacl::AllocateAddressSpaceASLR(GetCurrentProcess(), size);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dgetcwd.c17 char* getcwd(char* buf, size_t size) { argument
18 // If size is 0, allocate as much as we need.
19 if (size == 0) {
23 size = strlen(stack_buf) + 1;
27 buf = (char*)malloc(size);
29 return ki_getcwd(buf, size);
/external/chromium_org/third_party/WebKit/Source/web/
H A DCompositionUnderlineVectorBuilder.cpp41 size_t size = underlines.size(); local
42 reserveCapacity(size);
43 for (size_t i = 0; i < size; ++i)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
H A Drealglx.c38 /* be sure our dispatch table size <= libGL's table */
40 GLuint size = sizeof(struct _glxapi_table) / sizeof(void *); local
41 (void) size;
42 assert(_glxapi_get_dispatch_table_size() >= size);
/external/chromium_org/third_party/skia/src/gpu/gl/debug/
H A DGrBufferObj.cpp11 void GrBufferObj::allocate(GrGLsizeiptr size, const GrGLchar *dataPtr) { argument
12 GrAlwaysAssert(size >= 0);
17 fSize = size;
18 fDataPtr = new GrGLchar[size];
/external/chromium_org/tools/gyp/test/link-dependency/
H A Dmymalloc.c9 void *malloc(size_t size) { argument
10 (void)size;
/external/chromium_org/ui/file_manager/
H A Dfile_manager_resource_util.cc12 const GritResourceMap* GetFileManagerResources(size_t* size) { argument
13 DCHECK(size);
14 *size = kFileManagerResourcesSize;
/external/chromium_org/ui/views/window/
H A Dwindow_shape.cc8 #include "ui/gfx/size.h"
12 void GetDefaultWindowMask(const gfx::Size &size, gfx::Path *window_mask) { argument
13 // Redefine the window visible region for the new size.
20 window_mask->lineTo(SkIntToScalar(size.width() - 3), 0);
21 window_mask->lineTo(SkIntToScalar(size.width() - 2), 1);
22 window_mask->lineTo(SkIntToScalar(size.width() - 1), 1);
23 window_mask->lineTo(SkIntToScalar(size.width() - 1), 2);
24 window_mask->lineTo(SkIntToScalar(size.width()), 3);
26 window_mask->lineTo(SkIntToScalar(size.width()),
27 SkIntToScalar(size
[all...]
/external/clang/test/CodeGen/
H A Dvla-3.c5 void vlaalign(int size) argument
7 char __attribute__((aligned(16))) tmp[size+32];
8 char tmp2[size+16];
/external/clang/test/Sema/
H A Darm-darwin-aapcs.cpp9 void* operator new(size_t size) argument
11 return (malloc(size));
H A Dfreemain.c5 void* allocate(long size);
7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinterception_malloc_test.cc11 extern "C" void *__interceptor_malloc(size_t size);
12 extern "C" void *malloc(size_t size) { argument
14 return __interceptor_malloc(size);
/external/eigen/bench/btl/generic_bench/init/
H A Dinit_vector.hh28 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 Deigen2_bug_132.cpp13 int size = 100; local
14 MatrixXd A(size, size);
15 VectorXd b(size), c(size);
/external/elfutils/0.153/src/
H A Darlib2.c44 size_t size = obstack_object_size (&symtab.longnamesob); local
49 return size - sizeof (struct ar_hdr);

Completed in 6425 milliseconds

1234567891011>>