/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 34 10. directory (kb id (1 byte), offset (4 bytes), size (4 bytes)) 294 #print size of fields header 346 $kb->{size} = length(join '',@content); 347 $fill = ($kb->{size} % 4); 350 $totalcont += $kb->{size} + $kb->{fill}; 352 $kb->{size} = 0; 354 print $kb->{name}, " -> ", $kb->{file}, " -> ", $kb->{size}, "\n"; 358 # calculate total content size (B): 362 # size of number of kbs (7.) 365 #size of names of kbs (8. [all...] |
/hardware/broadcom/wlan/bcm4329/src/include/ |
sdioh.h | 110 /* SD_SysAddr: Offset 0x0000, Size 4 bytes */ 112 /* SD_BlockSize: Offset 0x004, Size 2 bytes */ 118 /* SD_BlockCount: Offset 0x006, size 2 bytes */ 120 /* SD_Arg0: Offset 0x008, size = 4 bytes */ 121 /* SD_TransferMode Offset 0x00C, size = 2 bytes */ 133 /* SD_Command: Offset 0x00E, size = 2 bytes */ 159 /* SD_BufferDataPort0 : Offset 0x020, size = 2 or 4 bytes */ 160 /* SD_BufferDataPort1 : Offset 0x022, size = 2 bytes */ 161 /* SD_PresentState : Offset 0x024, size = 4 bytes */ 191 /* SD_HostCntrl: Offset 0x028, size = 1 bytes * [all...] |
/hardware/msm7k/libgralloc-qsd8k/ |
gralloc.cpp | 56 size_t size, int usage, buffer_handle_t* pHandle); 120 size_t size, int usage, buffer_handle_t* pHandle) 153 private_handle_t* hnd = new private_handle_t(dup(m->framebuffer->fd), size, 174 size_t size, int usage, buffer_handle_t* pHandle) 179 int err = gralloc_alloc_framebuffer_locked(dev, size, usage, pHandle); 190 size_t size; local 194 size = 8<<20; // 8 MiB 196 size = region.len; 198 sAllocator.setSize(size); 200 void* base = mmap(0, size, [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
DalvInsnList.java | 57 int size = list.size(); local 58 DalvInsnList result = new DalvInsnList(size, regCount); 60 for (int i = 0; i < size; i++) { 71 * @param size the size of the list 73 public DalvInsnList(int size, int regCount) { 74 super(size); 83 * @param n {@code >= 0, < size();} which index 93 * @param n {@code >= 0, < size();} which inde [all...] |
/external/v8/src/ |
utils.cc | 134 int* size, 145 // Get the size of the file and rewind it. 146 *size = ftell(file); 149 char* result = NewArray<char>(*size + extra_space); 150 for (int i = 0; i < *size;) { 151 int read = static_cast<int>(fread(&result[i], 1, *size - i, file)); 164 byte* ReadBytes(const char* filename, int* size, bool verbose) { 165 char* chars = ReadCharsFromFile(filename, size, 0, verbose); 173 int size; local 174 char* result = ReadCharsFromFile(filename, &size, 1, verbose) [all...] |
/frameworks/base/docs/html/sdk/api_diff/4/changes/ |
constructors_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;"> 51 <br><font size="+2">B</font> 52 <a href="#I"><font size="-2">I</font></a> 53 <a href="#N"><font size="-2">N</font></a> 54 <a href="#S"><font size="-2">S</font></a> 55 <a href="#topheader"><font size="-2">TOP</font></a> 63 <br><font size="+2">I</font> 64 <a href="#B"><font size="-2">B</font></a> 65 <a href="#N"><font size="-2">N</font></a> 66 <a href="#S"><font size="-2">S</font></a> [all...] |
/frameworks/base/docs/html/sdk/api_diff/8/changes/ |
constructors_index_all.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#G"><font size="-2">G</font></a> 53 <a href="#S"><font size="-2">S</font></a> 54 <a href="#X"><font size="-2">X</font></a> 55 <a href="#topheader"><font size="-2">TOP</font></a> 63 <br><font size="+2">G</font> 64 <a href="#A"><font size="-2">A</font></a> 65 <a href="#S"><font size="-2">S</font></a> 66 <a href="#X"><font size="-2">X</font></a> [all...] |
/system/extras/tests/sdcard/ |
stopwatch.cpp | 36 #define SNPRINTF_OR_RETURN(str, size, format, ...) { \ 37 int len = snprintf((str), (size), (format), ## __VA_ARGS__); \ 39 if (len > static_cast<int>(size)) { \ 43 (size) -= len; (str) += len; \ 106 void StopWatch::sprint(char **str, size_t *size) 118 if (kVerbose) SNPRINTF_OR_RETURN(*str, *size, "# Got %d samples for %s\n", mDataLen, mName); 121 SNPRINTF_OR_RETURN(*str, *size, "# StopWatch %s total/cumulative duration %f Samples: %d\n", 123 printThroughput(str, size); 124 printAverageMinMax(str, size); 130 SNPRINTF_OR_RETURN(*str, *size, "# Name Iterations Duration Min MinIdx Max MaxIdx SizeKbytes\n") [all...] |
/bionic/libc/arch-x86/include/machine/ |
setjmp.h | 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
|
/bionic/libc/inet/ |
inet_ntop.c | 34 static const char *inet_ntop4(const u_char *src, char *dst, size_t size); 35 static const char *inet_ntop6(const u_char *src, char *dst, size_t size); 38 * inet_ntop(af, src, dst, size) 46 inet_ntop(int af, const void *src, char *dst, size_t size) 50 return (inet_ntop4(src, dst, size)); 52 return (inet_ntop6(src, dst, size)); 61 * inet_ntop4(src, dst, size) 72 inet_ntop4(const u_char *src, char *dst, size_t size) 78 l = snprintf(tmp, size, fmt, src[0], src[1], src[2], src[3]); 79 if (l <= 0 || (size_t)l >= size) { [all...] |
/bionic/libc/kernel/common/asm-generic/bitops/ |
le.h | 33 #define generic_find_next_zero_le_bit(addr, size, offset) find_next_zero_bit(addr, size, offset) 51 #define generic_find_first_zero_le_bit(addr, size) generic_find_next_zero_le_bit((addr), (size), 0)
|
/bootable/diskinstaller/ |
installer_img_layout.conf | 10 # Autodetect disk size if == 0
|
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
CopyOnWriteArraySetTest.java | 30 assertEquals(n, a.size()); 46 Integer[] ints = new Integer[SIZE]; 47 for (int i = 0; i < SIZE-1; ++i) 50 for (int i = 0; i < SIZE; ++i) 65 assertEquals(6, full.size()); 79 assertEquals(5, full.size()); 88 assertEquals(3, full.size()); 107 assertEquals(0, full.size()); 208 assertEquals(1, full.size()); 219 assertEquals(2, full.size()); [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/ |
AsymmetricBlockCipher.java | 20 * returns the largest size an input block can be. 22 * @return maximum size for an input block. 27 * returns the maximum size of the block produced by this cipher. 29 * @return maximum size of the output block produced by the cipher.
|
ExtendedDigest.java | 7 * Return the size in bytes of the internal buffer the digest applies it's compression
|
/external/clearsilver/util/ |
neo_hash.c | 32 my_hash->size = 256; 37 my_hash->nodes = (NE_HASHNODE **) calloc (my_hash->size, sizeof(NE_HASHNODE *)); 60 for (x = 0; x < my_hash->size; x++) 150 bucket = (*node)->hashv & (hash->size - 1); 155 bucket = hashv & (hash->size - 1); 173 while (bucket < hash->size) 193 bucket = hashv & (hash->size - 1); 220 int orig_size = hash->size; 223 if (hash->size > hash->num) 226 /* We always double in size */ [all...] |
/external/dropbear/libtomcrypt/src/pk/ecc/ |
ecc_get_size.c | 27 Get the size of an ECC key 28 @param key The key to get the size of 29 @return The size (octets) of the key or INT_MAX on error 35 return key->dp->size;
|
/external/dropbear/libtomcrypt/src/pk/pkcs1/ |
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/dropbear/libtommath/ |
bn_mp_prime_rabin_miller_trials.c | 32 /* returns # of RM trials required for a given bit size */ 33 int mp_prime_rabin_miller_trials(int size) 38 if (sizes[x].k == size) { 40 } else if (sizes[x].k > size) {
|
/external/e2fsprogs/e2fsck/ |
mtrace.h | 60 /* Allocate SIZE bytes of memory. */ 63 in __ptr_t, making the new block SIZE bytes long. */ 65 /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */ 70 /* Allocate SIZE bytes allocated to ALIGNMENT bytes. */ 73 /* Allocate SIZE bytes on a page boundary. */ 99 /* The allocator divides the heap into blocks of fixed size; large 102 and all fragments of a block are the same size. When all the 107 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE) 124 logarithm to the base two of the fragment size. * 134 size_t size; member in union:__anon1664::__anon1665::__anon1666 141 size_t size; \/* Size (in blocks) of a free cluster. *\/ member in struct:__anon1664::__anon1668 [all...] |
/external/elfutils/libdw/ |
libdw_alloc.c | 29 size_t size = MAX (dbg->mem_default_size, local 31 struct libdw_memblock *newp = malloc (size); 35 newp->size = newp->remaining = size - offsetof (struct libdw_memblock, mem);
|
/external/guava/javadoc/ |
stylesheet.css | 9 h1 { font-size: 145% } 17 .FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 } 18 .FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 } 19 .FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
|
/external/icu4c/tools/tzcode/ |
ialloc.c | 36 irealloc(pointer, size) 38 const int size; 41 return imalloc(size); 42 return realloc((void *) pointer, (size_t) nonzero(size));
|
/external/iptables/extensions/ |
libipt_tcpmss.man | 1 This matches the TCP MSS (maximum segment size) field of the TCP header. You can only use this on TCP SYN or SYN/ACK packets, since the MSS is only negotiated during the TCP handshake at connection startup time.
|
/external/jsr305/javadoc/ |
stylesheet.css | 9 h1 { font-size: 145% } 17 .FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif } 18 .FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif } 19 .FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif }
|