/external/icu/android_icu4j/src/main/java/android/icu/text/ |
Normalizer2.java | 54 * (to process only the substring for which sort key bytes are computed). 181 ByteBuffer bytes = null; local 184 bytes = ICUBinary.getByteBufferFromInputStreamAndCloseStream(data); 189 Norm2AllModes all2Modes=Norm2AllModes.getInstance(bytes, name);
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
BytesTrieBuilder.java | 30 // Used in add() to wrap the bytes into a CharSequence for StringTrieBuilder.addImpl(). 47 * Bytes 0..length-1 will be copied; the builder does not keep 75 return new BytesTrie(bytes, bytes.length-bytesLength); 87 * <em>Do not modify the bytes in the buffer!</em> 98 return ByteBuffer.wrap(bytes, bytes.length-bytesLength, bytesLength); 103 if(bytes==null) { 104 bytes=new byte[1024]; 116 bytes=null 303 private byte[] bytes; field in class:BytesTrieBuilder [all...] |
/external/icu/icu4c/source/io/ |
ufmt_cmn.c | 173 uint8_t bytes[sizeof(void*)]; member in union:__anon12835 217 result.bytes[resultIdx] = byte;
|
/external/icu/icu4c/source/test/intltest/ |
convtest.h | 38 const uint8_t *bytes; member in struct:ConversionCase
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
BreakIteratorFactory.java | 123 ByteBuffer bytes = null; local 135 bytes = ICUBinary.getData(rulesFileName); 145 iter = RuleBasedBreakIterator.getInstanceFromCompiledRules(bytes);
|
DictionaryData.java | 48 ByteBuffer bytes = ICUBinary.getRequiredData(dictFileName); local 49 ICUBinary.readHeader(bytes, DATA_FORMAT_ID, null); 53 indexes[i] = bytes.getInt(); 59 ICUBinary.skipBytes(bytes, diff); 67 bytes.get(data); 71 String data = ICUBinary.getString(bytes, totalSize / 2, totalSize & 1);
|
Normalizer2.java | 53 * (to process only the substring for which sort key bytes are computed). 192 ByteBuffer bytes = null; local 195 bytes = ICUBinary.getByteBufferFromInputStreamAndCloseStream(data); 200 Norm2AllModes all2Modes=Norm2AllModes.getInstance(bytes, name);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
BytesTrieBuilder.java | 30 // Used in add() to wrap the bytes into a CharSequence for StringTrieBuilder.addImpl(). 47 * Bytes 0..length-1 will be copied; the builder does not keep 77 return new BytesTrie(bytes, bytes.length-bytesLength); 89 * <em>Do not modify the bytes in the buffer!</em> 101 return ByteBuffer.wrap(bytes, bytes.length-bytesLength, bytesLength); 106 if(bytes==null) { 107 bytes=new byte[1024]; 120 bytes=null 307 private byte[] bytes; field in class:BytesTrieBuilder [all...] |
/external/iptables/include/linux/netfilter/ |
xt_sctp.h | 38 #define bytes(type) (sizeof(type) * 8) macro 42 (chunkmap)[type / bytes(__u32)] |= \ 43 1 << (type % bytes(__u32)); \ 48 (chunkmap)[type / bytes(__u32)] &= \ 49 ~(1 << (type % bytes(__u32))); \ 54 ((chunkmap)[type / bytes (__u32)] & \ 55 (1 << (type % bytes (__u32)))) ? 1: 0; \
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
HttpWriter.java | 139 int bytes=out._bytes.getCount(); local 141 if (chars>buffer.length-bytes) 142 chars=buffer.length-bytes; 147 buffer[bytes++]=(byte)(c<256?c:'?'); // ISO-1 and UTF-8 match for 0 - 255 149 if (bytes>=0) 150 out._bytes.setCount(bytes); 158 int bytes=out._bytes.getCount(); local 160 if (bytes+chars>buffer.length) 161 chars=buffer.length-bytes; 193 if (bytes>=buffer.length [all...] |
/external/kernel-headers/original/uapi/linux/netfilter/ |
xt_sctp.h | 38 #define bytes(type) (sizeof(type) * 8) macro 42 (chunkmap)[type / bytes(__u32)] |= \ 43 1 << (type % bytes(__u32)); \ 48 (chunkmap)[type / bytes(__u32)] &= \ 49 ~(1 << (type % bytes(__u32))); \ 54 ((chunkmap)[type / bytes (__u32)] & \ 55 (1 << (type % bytes (__u32)))) ? 1: 0; \
|
/external/libchrome/dbus/ |
property.cc | 550 const uint8_t* bytes = NULL; local 552 if (!variant_reader.PopArrayOfBytes(&bytes, &length)) 554 value_.assign(bytes, bytes + length); 633 const uint8_t* bytes = NULL; local 635 if (!struct_reader.PopArrayOfBytes(&bytes, &length)) 637 entry.first.assign(bytes, bytes + length);
|
/external/libedit/src/ |
read.c | 196 /* FIONREAD attempts to buffer up multiple bytes, and to make that work 319 int bytes = 0; local 356 if ((bytes = ct_mbtowc(cp, cbuf, cbp)) == -1) { 369 (bytes = ct_mbtowc(cp, cbuf, cbp)) != 1) 373 if ((el->el_flags & IGNORE_EXTCHARS) && bytes > 1) {
|
/external/libevent/ |
event_iocp.c | 75 DWORD bytes=0; local 76 int ok = GetQueuedCompletionStatus(p, &bytes, &key, 89 handle_entry(overlapped, key, bytes, ok); 115 DWORD bytes=0; local 119 &bytes, NULL, NULL);
|
/external/libopus/src/ |
opus.c | 174 int i, bytes; local 214 bytes = parse_size(data, len, size); 215 len -= bytes; 218 data += bytes; 256 bytes = parse_size(data, len, size+i); 257 len -= bytes; 260 data += bytes; 261 last_size -= bytes+size[i]; 279 bytes = parse_size(data, len, size+count-1); 280 len -= bytes; [all...] |
/external/libvncserver/common/ |
md5.c | 59 /* This array contains the bytes used to pad the buffer to the next 79 /* Put result from CTX in first 16 bytes following RESBUF. The result 97 /* Process the remaining bytes in the internal buffer and the usual 107 /* Take yet unprocessed bytes into account. */ 108 md5_uint32 bytes = ctx->buflen; local 111 /* Now count remaining bytes. */ 112 ctx->total[0] += bytes; 113 if (ctx->total[0] < bytes) 116 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes [all...] |
/external/libvncserver/libvncserver/ |
stats.c | 278 int bytes=0; local 281 bytes += ptr->bytesSent; 283 bytes += ptr->bytesSent; 284 return bytes; 290 int bytes=0; local 293 bytes += ptr->bytesSentIfRaw; 295 bytes += ptr->bytesSentIfRaw; 296 return bytes; 302 int bytes=0; local 305 bytes += ptr->bytesRcvd 314 int bytes=0; local 389 int bytes=0; local [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_debug.cpp | 141 const uint8_t *Bytes; 144 BufferMemoryObject(const uint8_t *bytes, uint64_t length) : 145 Bytes(bytes), Length(length) 163 *byte = Bytes[addr]; 183 const uint8_t *bytes = (const uint8_t *)func; local 290 BufferMemoryObject memoryObject((const uint8_t *)bytes, extent); 317 * Output the bytes in hexidecimal format. 323 debug_printf("%02x ", ((const uint8_t*)bytes)[pc + i]); 423 debug_printf("disassemble %p %p\n", bytes, bytes + pc) [all...] |
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_transfer.c | 227 unsigned bytes = MIN2(size, 1 << 17); local 236 PUSH_DATA (push, bytes); 241 srcoff += bytes; 242 dstoff += bytes; 243 size -= bytes;
|
/external/mesa3d/src/glsl/ |
main.cpp | 83 size_t bytes = fread(text + total_read, local 85 if (bytes < size - total_read) { 91 if (bytes == 0) { 95 total_read += bytes;
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_dma.c | 216 aligned to next 16 bytes. */ 267 int bytes, int alignment) 270 fprintf(stderr, "%s %d\n", __FUNCTION__, bytes); 281 || rmesa->dma.current_used + bytes > first_elem(&rmesa->dma.reserved)->bo->size) 282 radeonRefillCurrentDmaRegion(rmesa, bytes); 288 /* Always align to at least 16 bytes */ 289 rmesa->dma.current_used = (rmesa->dma.current_used + bytes + 15) & ~15; 454 GLuint bytes = vsize * nverts; local 460 ||rmesa->dma.current_vertexptr + bytes > first_elem(&rmesa->dma.reserved)->bo->size) { 465 radeonRefillCurrentDmaRegion(rmesa, bytes); [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_texture.c | 70 GLuint bytes = _mesa_format_image_size(texImage->TexFormat, texImage->Width, local 75 swImg->Buffer = _mesa_align_malloc(bytes, 512); 181 * \param rowStrideOut returns row stride (in bytes)
|
/external/mtpd/ |
mtpd.c | 120 unsigned char bytes[2]; local 121 if (recv(control, &bytes[0], 1, 0) != 1 || 122 recv(control, &bytes[1], 1, 0) != 1) { 126 int length = bytes[0] << 8 | bytes[1];
|
/external/opencv3/3rdparty/libtiff/ |
tif_aux.c | 39 uint32 bytes = first * second; local 41 if (second && bytes / second != first) { 43 bytes = 0; 46 return bytes; 52 uint64 bytes = first * second; local 54 if (second && bytes / second != first) { 56 bytes = 0; 59 return bytes; 67 tmsize_t bytes = nmemb * elem_size; local 72 if (nmemb && elem_size && bytes / elem_size == nmemb [all...] |
/external/pdfium/third_party/libtiff/ |
tif_aux.c | 39 uint32 bytes = first * second; local 41 if (second && bytes / second != first) { 43 bytes = 0; 46 return bytes; 52 uint64 bytes = first * second; local 54 if (second && bytes / second != first) { 56 bytes = 0; 59 return bytes; 67 tmsize_t bytes = nmemb * elem_size; local 72 if (nmemb && elem_size && bytes / elem_size == nmemb [all...] |