Searched defs:size (Results 126 - 150 of 3991) sorted by relevance

1234567891011>>

/external/freetype/src/base/
H A Dftapi.c46 FT_ULong size,
51 FT_Stream_OpenMemory( stream, base, size );
44 FT_New_Memory_Stream( FT_Library library, FT_Byte* base, FT_ULong size, FT_Stream stream ) argument
/external/guava/guava-tests/test/com/google/common/io/
H A DIoTestCase.java36 /** Returns a byte array of length size that has values 0 .. size - 1. */
37 protected static byte[] newPreFilledByteArray(int size) { argument
38 return newPreFilledByteArray(0, size);
42 * Returns a byte array of length size that has values
43 * offset .. offset + size - 1.
45 protected static byte[] newPreFilledByteArray(int offset, int size) { argument
46 byte[] array = new byte[size];
47 for (int i = 0; i < size; i++) {
/external/harfbuzz/src/
H A Dharfbuzz-impl.c33 _hb_alloc(size_t size, argument
39 if ( size > 0 )
41 block = calloc( 1, size );
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-impl.c33 _hb_alloc(size_t size, argument
39 if ( size > 0 )
41 block = calloc( 1, size );
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DHeightMapGrid.java21 public void setSize(int size); argument
/external/libselinux/src/
H A Dcanonicalize_context.c17 size_t size; local
30 size = selinux_page_size;
31 buf = malloc(size);
36 strncpy(buf, con, size);
42 memset(buf, 0, size);
43 ret = read(fd, buf, size - 1);
47 strncpy(buf, con, size);
H A Dcompute_create.c20 size_t size; local
33 size = selinux_page_size;
34 buf = malloc(size);
39 snprintf(buf, size, "%s %s %hu", scon, tcon, unmap_class(tclass));
45 memset(buf, 0, size);
46 ret = read(fd, buf, size - 1);
H A Dget_initial_context.c18 size_t size; local
32 size = selinux_page_size;
33 buf = malloc(size);
38 memset(buf, 0, size);
39 ret = read(fd, buf, size - 1);
H A Dgetpeercon.c17 socklen_t size; local
20 size = INITCONTEXTLEN + 1;
21 buf = malloc(size);
24 memset(buf, 0, size);
26 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size);
30 newbuf = realloc(buf, size);
35 memset(buf, 0, size);
36 ret = getsockopt(fd, SOL_SOCKET, SO_PEERSEC, buf, &size);
/external/linux-tools-perf/util/
H A Dwrapper.c10 static inline void release_pack_memory(size_t size __used, int flag __used)
26 void *xrealloc(void *ptr, size_t size) argument
28 void *ret = realloc(ptr, size);
29 if (!ret && !size)
32 release_pack_memory(size, -1);
33 ret = realloc(ptr, size);
34 if (!ret && !size)
/external/llvm/lib/Support/
H A DMemoryObject.cpp17 uint64_t size,
23 if (current + size > limit)
26 while (current - address < size) {
16 readBytes(uint64_t address, uint64_t size, uint8_t* buf, uint64_t* copied) const argument
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsDirectObjLower.cpp52 // Pick a DEXT or DINS instruction variant based on the pos and size operands
66 int64_t size = InstIn.getOperand(3).getImm(); local
68 if (size <= 32) {
77 assert(pos < 32 && "DEXT/DINS cannot have both size and pos > 32");
78 InstIn.getOperand(3).setImm(size - 32);
/external/marisa-trie/lib/marisa/
H A Dtail.h18 void map(const void *ptr, std::size_t size);
36 MARISA_DEBUG_IF(offset >= buf_.size(), MARISA_PARAM_ERROR);
46 std::size_t size() const { function in class:marisa::Tail
47 return buf_.size();
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dtail.h18 void map(const void *ptr, std::size_t size);
36 MARISA_ALPHA_DEBUG_IF(offset >= buf_.size(), MARISA_ALPHA_PARAM_ERROR);
47 std::size_t size() const { function in class:marisa_alpha::Tail
48 return buf_.size();
/external/open-vcdiff/src/
H A Dchecksum.h32 size_t size) {
35 static_cast<uInt>(size));
40 size_t size) {
43 static_cast<uInt>(size));
31 ComputeAdler32(const char* buffer, size_t size) argument
38 UpdateAdler32(VCDChecksum partial_checksum, const char* buffer, size_t size) argument
/external/openssh/
H A Dsftp-common.h36 u_int64_t size; member in struct:Attrib
/external/openssl/crypto/ui/
H A Dui_compat.c64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
/external/proguard/src/proguard/gui/splash/
H A DVariableSizeFont.java26 * This VariableFont varies in size with respect to its Timing.
33 private final VariableDouble size; field in class:VariableSizeFont
42 * @param size the variable size of the font.
44 public VariableSizeFont(Font font, VariableDouble size) argument
47 this.size = size;
55 float s = (float)size.getDouble(time);
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_inl.h48 int size) {
49 if (size < 0) return false; // security: size is often user-supplied
51 if (BufferSize() >= size) {
52 STLStringResizeUninitialized(buffer, size);
53 memcpy(string_as_array(buffer), buffer_, size); local
54 Advance(size);
58 return ReadStringFallback(buffer, size);
47 InternalReadStringInline(string* buffer, int size) argument
/external/qemu/android/
H A Dresource.c19 size_t size; member in struct:__anon11112
32 *psize = e->size;
/external/qemu/
H A Dcbuffer.h21 int size; member in struct:__anon11218
27 cbuffer_reset( CBuffer* cb, void* buff, int size )
30 cb->size = size;
38 return cb->size - cb->count;
H A Ddma.h27 target_phys_addr_t size; member in struct:__anon11593
/external/qemu/elff/
H A Delf_mapped_section.cc35 Elf_Word size) {
38 mapped_at_ = mapfile_map(handle, offset, size, PROT_READ,
33 map(MapFile* handle, Elf_Xword offset, Elf_Word size) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DGameComponentPool.java28 public GameComponentPool(Class<?> type, int size) { argument
29 super(size);
/external/skia/bench/
H A DSkBenchLogger.cpp26 void SkBenchLogger::fileWrite(const char msg[], size_t size) { argument
28 fFileStream->write(msg, size);

Completed in 670 milliseconds

1234567891011>>