/external/icu4c/i18n/ |
ulocdata.c | 96 int32_t len = 0; local 102 exemplarChars = ures_getStringByKey(uld->bundle, exemplarSetTypes[extype], &len, &localStatus); 115 uset_applyPattern(fillIn, exemplarChars, len, 118 fillIn = uset_openPatternOptions(exemplarChars, len, 137 int32_t len = 0; local 159 delimiter = ures_getStringByKey(delimiterBundle, delimiterKeys[type], &len, &localStatus); 175 return len; 207 int32_t len = 0; local 215 paperSize = ures_getIntVector(paperSizeBundle, &len, status); 218 if(len < 2) 245 int32_t len = 0; local 294 int32_t len = 0; local [all...] |
uni2name.cpp | 72 // if either there is no name data (max len == 0) or there is no 93 int32_t len; local 99 if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) { 101 str.append(UnicodeString(buf, len, US_INV)).append(CLOSE_DELIM); 103 len += OPEN_DELIM_LEN + 1; // adjust for delimiters 104 cursor += len; // advance cursor and adjust for new text 105 limit += len-clen; // change in length
|
/external/iproute2/ip/ |
link_veth.c | 31 int err, len; local 50 len = strlen(name) + 1; 51 if (len > IFNAMSIZ) 53 addattr_l(hdr, 1024, IFLA_IFNAME, name, len);
|
/external/iptables/extensions/ |
libip6t_dst.man | 3 .BR "--dst-len " "[!] \fIlength"
|
/external/opencore/protocols/systems/tools/general/common/include/ |
media_fragment.h | 62 _fragment.len = 0; 64 OSCL_IMPORT_REF MediaFragment(const MediaFragment& that, OsclAny* ptr = NULL, int32 len = 0); 77 return _fragment.len; 80 OsclAny Trim(uint8* ptr, int32 len) 82 // if( (ptr >= _fragment.ptr && ptr < ((uint8*)_fragment.ptr+_fragment.len)) && 83 // (((uint8*)ptr +len) <= ((uint8*)_fragment.ptr+_fragment.len)) ){ 85 _fragment.len = len; 125 OsclAny Set(OsclAny* ptr, int32 len, BufferState* state [all...] |
/external/openssl/crypto/des/ |
enc_writ.c | 80 int DES_enc_write(int fd, const void *_buf, int len, 109 if (len > MAXWRITE) 112 for (i=0; i<len; i+=k) 115 ((len-i) > MAXWRITE)?MAXWRITE:(len-i),sched,iv); 126 l2n(len,p); 129 if (len < 8) 132 memcpy(shortbuf,buf,len); 133 RAND_pseudo_bytes(shortbuf+len, 8-len); [all...] |
/external/qemu/ |
cbuffer.h | 41 extern int cbuffer_write( CBuffer* cb, const void* from, int len ); 43 extern void cbuffer_write_step( CBuffer* cb, int len ); 51 extern int cbuffer_read( CBuffer* cb, void* to, int len ); 53 extern void cbuffer_read_step( CBuffer* cb, int len );
|
qemu-log.h | 60 #define log_target_disas(start, len, flags) \ 61 target_disas(logfile, (start), (len), (flags)) 62 #define log_disas(start, len) \ 63 disas(logfile, (start), (len))
|
/external/qemu/distrib/sdl-1.2.12/src/audio/ |
SDL_mixer_m68k.h | 31 void SDL_MixAudio_m68k_U8(char* dst,char* src, long len, long volume, char* mix8); 32 void SDL_MixAudio_m68k_S8(char* dst,char* src, long len, long volume); 34 void SDL_MixAudio_m68k_S16MSB(short* dst,short* src, long len, long volume); 35 void SDL_MixAudio_m68k_S16LSB(short* dst,short* src, long len, long volume);
|
/external/skia/src/animator/ |
SkScriptCallBack.h | 18 virtual bool getReference(const char* , size_t len, SkScriptValue2* result) { return false; } 38 bool getMemberReference(const char* , size_t len, void* object, SkScriptValue2* ref); 45 bool getMemberReference(const char* , size_t len, void* object, SkScriptValue2* ref); 53 virtual bool getConstValue(const char* name, size_t len, SkOperand2* value) { return false; }
|
/external/skia/xcode/hostapp/ |
test.cpp | 18 const size_t len = strlen(text); local 22 canvas->drawText(text, len, SkIntToScalar(100), SkIntToScalar(50), paint); 24 canvas->drawText(text, len, SkIntToScalar(100), SkIntToScalar(100), paint); 26 canvas->drawText(text, len, SkIntToScalar(100), SkIntToScalar(150), paint);
|
/external/stlport/stlport/using/ |
cstring | 7 inline void* memcpy(void* dst, const void* src, size_t len) 8 { return _STLP_VENDOR_CSTD::__memcpy(dst, src, len); } 9 inline void* memmove(void* dst, const void* src, size_t len) 10 { return _STLP_VENDOR_CSTD::__memmove(dst, src, len); }
|
/external/tcpdump/ |
print-ip.c | 64 register u_int len; local 76 for (len = 3; len < length; len += 4) { 77 printf(" %s", ipaddr_string(&cp[len])); 78 if (ptr > len) 94 int len; local 101 for (; length > 0; cp += len, length -= len) { 109 len = 1 136 register u_int len; local 369 u_int len, off; member in struct:ip_print_demux_state [all...] |
print-sip.c | 36 sip_print(register const u_char *pptr, register u_int len) 40 printf("SIP, length: %u%s", len, vflag ? "\n\t" : ""); 46 for (idx = 0; idx < len; idx++) { 57 print_unknown_data(pptr,"\n\t",len);
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
crypto_gnutls.c | 21 void md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 30 gcry_md_write(hd, addr[i], len[i]); 60 void md5_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 69 gcry_md_write(hd, addr[i], len[i]); 77 void sha1_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 86 gcry_md_write(hd, addr[i], len[i]); 103 void * aes_encrypt_init(const u8 *key, size_t len) 112 if (gcry_cipher_setkey(hd, key, len) != GPG_ERR_NO_ERROR) { 136 void * aes_decrypt_init(const u8 *key, size_t len) 143 if (gcry_cipher_setkey(hd, key, len) != GPG_ERR_NO_ERROR) [all...] |
/hardware/msm7k/librpc/ |
ops.c | 35 int len = rc / 4; local 38 while (len--) 53 int len = rc / 4; local 56 while (len--)
|
/packages/apps/Settings/assets/html/cs/ |
tethering_usb_help.html | 20 <p><b>Sdílené datové p?ipojení prost?ednictvím portu USB</b></p> 23 <li>Sdílení datového p?ipojení funguje v systémech Windows Vista, Windows 7 a Linux.</li><br> 24 <li>P?i sdílení datového p?ipojení prost?ednictvím portu USB nelze p?ipojit kartu SD telefonu k po?íta?i.</li><br> 25 <li>Dal?í informace v?etn? informací o sdílení datového p?ipojení prost?ednictvím portu USB v jiných opera?ních systémech naleznete na stránce <a href="http://www.android.com/tether#usb">http://www.android.com/tether#usb</a></li><br>
|
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
SDL_string.c | 243 void *SDL_memset(void *dst, int c, size_t len) 245 size_t left = (len % 4); 246 if ( len >= 4 ) { 254 len /= 4; 255 while ( len-- ) { 276 void *SDL_memcpy(void *dst, const void *src, size_t len) 280 while ( len-- ) { 288 void *SDL_revcpy(void *dst, const void *src, size_t len) 292 srcp += len-1; 293 dstp += len-1 320 size_t len = 0; local 333 size_t len = SDL_min(srclen, maxlen-1); local 356 size_t len = SDL_strlen(string)+1; local 368 size_t len = SDL_strlen(string); local 511 size_t len; local 533 size_t len; local 609 size_t len; local 631 size_t len; local 655 size_t len; local 1077 size_t len; local 1125 size_t len = 0; local [all...] |
/external/dropbear/ |
signkey.c | 93 unsigned int len; local 99 ident = buf_getstring(buf, &len); 100 keytype = signkey_type_from_name(ident, len); 110 buf_incrpos(buf, -len - 4); 145 unsigned int len; local 151 ident = buf_getstring(buf, &len); 152 keytype = signkey_type_from_name(ident, len); 163 buf_incrpos(buf, -len - 4); 210 if (pubkeys->len == 0) { 215 buf_putstring(buf, buf_getptr(pubkeys, pubkeys->len), 443 unsigned int len, filealgolen; local [all...] |
/external/e2fsprogs/e2fsck/ |
jfs_user.h | 57 #define kmem_cache_create(name,len,a,b,c,d) do_cache_create(len) 59 #define kmalloc(len,flags) malloc(len) 66 extern kmem_cache_t * do_cache_create(int len); 80 _INLINE_ kmem_cache_t * do_cache_create(int len) 85 new_cache->object_length = len;
|
/external/elfutils/libebl/ |
eblsectiontypename.c | 24 ebl_section_type_name (ebl, section, buf, len) 28 size_t len; 30 const char *res = ebl->section_type_name (section, buf, len); 87 snprintf (buf, len, "SHT_LOOS+%x", section - SHT_LOOS); 90 snprintf (buf, len, "SHT_LOPROC+%x", section - SHT_LOPROC); 93 snprintf (buf, len, "SHT_LOUSER+%x", section - SHT_LOUSER); 95 snprintf (buf, len, "%s: %d", gettext ("<unknown>"), section);
|
/external/icu4c/test/cintltst/ |
cposxtst.c | 73 int32_t len = -1; local 81 ustr = u_catgets(catd, set_num, msg_num, FAIL, &len, &ec); 85 log_verbose("u_catgets(%d, %d) => \"%s\", len=%d, %s\n", 86 set_num, msg_num, str, len, err); 93 if (len != (int32_t) uprv_strlen(DATA[i+2])) { 94 log_err("FAIL: u_catgets => len=%d, exp. %d\n", 95 len, uprv_strlen(DATA[i+2]));
|
/external/icu4c/test/perf/collperf/ |
CollPerf_r.pl | 42 "Key Gen ICU len", ["$p1 TestIcu_KeyGen_len", "$p2 TestIcu_KeyGen_len"], 44 "Iteration icu forward len", ["$p1 TestIcu_ForwardIter_len", "$p2 TestIcu_ForwardIter_len"], 46 "Iteration icu backward len", ["$p1 TestIcu_BackwardIter_len", "$p2 TestIcu_BackwardIter_len"], 48 "Iteration/all icu forward len", ["$p1 TestIcu_ForwardIter_all_len", "$p2 TestIcu_ForwardIter_all_len"], 50 "Iteration/all icu backward len", ["$p1 TestIcu_BackwardIter_all_len", "$p2 TestIcu_BackwardIter_all_len"], 52 "qsort icu strcoll len", ["$p1 TestIcu_qsort_strcoll_len", "$p2 TestIcu_qsort_strcoll_len"], 55 "Binary Search icu strcoll len", ["$p1 TestIcu_BinarySearch_strcoll_len", "$p2 TestIcu_BinarySearch_strcoll_len"],
|
/external/skia/include/svg/ |
SkSVGParser.h | 41 void _addAttributeLen(const char* attrName, const char* attrValue, size_t len) { 42 fXMLWriter.addAttributeLen(attrName, attrValue, len); } 44 int findAttribute(SkSVGBase* , const char* attrValue, size_t len, bool isPaint); 54 bool onAddAttributeLen(const char name[], const char value[], size_t len); 57 bool onStartElementLen(const char elem[], size_t len); 58 virtual bool onText(const char text[], int len); 63 static SkSVGTypes GetType(const char name[], size_t len);
|
/external/wpa_supplicant/tests/ |
test_md4.c | 67 size_t len[2]; local 74 len[0] = strlen(tests[i].data); 75 md4_vector(1, addr, len, hash); 82 if (len[0]) { 84 len[0] = strlen(tests[i].data); 86 len[1] = strlen(tests[i].data) - 1; 87 md4_vector(1, addr, len, hash);
|