/external/icu4c/samples/legacy/ |
newcol.cpp | 68 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]) { 84 qsort(data, size, maxlen*sizeof(UChar), compare_current);
|
legacy.cpp | 25 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxLen, uint8_t keys[][32]); 26 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]);
|
oldcol.cpp | 84 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[4][32]) { 101 qsort(data, size, maxlen*sizeof(UChar), compare_legacy);
|
/external/iproute2/man/man3/ |
libnetlink.3 | 43 int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data) 45 int addattr_l(struct nlmsghdr *n, int maxlen, int type, void *data, int alen) 47 int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data) 49 int rta_addattr_l(struct rtattr *rta, int maxlen, int type, void *data, int alen) 156 .B maxlen. 169 .B maxlen.
|
/external/webrtc/src/common_audio/resampler/main/source/ |
resampler.cc | 402 int maxLen, int &outLen) 418 WebRtc_Word16* out_left = (WebRtc_Word16*)malloc(maxLen / 2 * sizeof(WebRtc_Word16)); 420 (WebRtc_Word16*)malloc(maxLen / 2 * sizeof(WebRtc_Word16)); 434 res |= slave_left_->Push(left, lengthIn, out_left, maxLen / 2, actualOutLen_left); 435 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right); 473 if (maxLen < (lengthIn * 2)) 488 if (maxLen < (lengthIn * 3)) 504 if (maxLen < (lengthIn * 4)) 524 if (maxLen < (lengthIn * 6)) 549 if (maxLen < (lengthIn * 3 / 2) [all...] |
/external/bzip2/ |
huffman.c | 66 Int32 maxLen ) 120 if (j > maxLen) tooLong = True; 130 maxLen, which up to and including version 1.0.2 was 20 bits, 131 which is extremely unlikely. In version 1.0.3 maxLen was 155 Int32 maxLen, 161 for (n = minLen; n <= maxLen; n++) { 175 Int32 maxLen, 181 for (i = minLen; i <= maxLen; i++) 193 for (i = minLen; i <= maxLen; i++) { 198 for (i = minLen + 1; i <= maxLen; i++ [all...] |
/system/vold/ |
VolumeManager.h | 97 int getAsecMountPath(const char *id, char *buffer, int maxlen); 98 int getAsecFilesystemPath(const char *id, char *buffer, int maxlen); 104 int getObbMountPath(const char *id, char *buffer, int maxlen);
|
/external/chromium/net/base/ |
ssl_cipher_suite_names_generate.go | 75 maxLen := 0 78 if len(k) > maxLen { 79 maxLen = len(k) 88 fmt.Printf("static const struct {\n char name[%d];\n} %s[%d] = {\n", maxLen+1, name, len(d))
|
/external/oprofile/gui/ |
oprof_start_util.cpp | 180 * @param maxlen width of line 187 string const format(string const & orig, uint const maxlen) 198 if (line.size() + oline.size() < maxlen) { 208 if (line.size() + word.size() > maxlen) {
|
oprof_start_util.h | 34 std::string const format(std::string const & orig, uint const maxlen);
|
/external/qemu/distrib/sdl-1.2.12/src/audio/ |
SDL_audiodev_c.h | 25 extern int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic);
|
/external/svox/pico/lib/ |
picobase.h | 55 * the UTF8 string 'utf8str' of maximum length maxlen (in bytes) 57 * @param maxlen : max length (in bytes) accessible in utf8str 59 * up to the first '\0' or maxlen 64 const picoos_uint16 maxlen);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
ShaderLang.cpp | 24 TString::size_type maxLen = 0; 28 maxLen = std::max(maxLen, i->name.size()); 31 return static_cast<int>(maxLen) + 1;
|
/external/webkit/Source/WebCore/css/ |
makeprop.pl | 105 my $maxLen = 0; 111 if (length($name) > $maxLen) { 112 $maxLen = length($name); 120 print HEADER "const size_t maxCSSPropertyNameLength = $maxLen;\n";
|
/external/dropbear/ |
packet.c | 98 unsigned int maxlen; local 122 maxlen = ses.readbuf->len - ses.readbuf->pos; 123 len = read(ses.sock, buf_getptr(ses.readbuf, maxlen), maxlen); 140 if ((unsigned int)len == maxlen) { 153 unsigned int maxlen; local 169 maxlen = blocksize - ses.readbuf->pos; 172 len = read(ses.sock, buf_getwriteptr(ses.readbuf, maxlen), 173 maxlen); 187 if ((unsigned int)len != maxlen) { [all...] |
common-channel.c | 395 int len, maxlen; local 399 maxlen = cbuf_readlen(cbuf); 402 len = write(fd, cbuf_readptr(cbuf, maxlen), maxlen); 581 size_t maxlen, size_pos; local 597 maxlen = MIN(channel->transwindow, channel->transmaxpacket); 600 maxlen = MIN(maxlen, 602 TRACE(("maxlen %d", maxlen)) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/riscos/ |
SDL_riscostask.c | 61 static int RISCOS_GetTaskName(char *task_name, size_t maxlen); 181 int RISCOS_GetTaskName(char *task_name, size_t maxlen) 235 if (env_val) SDL_strlcpy(task_name, env_val, maxlen); 254 if (!*task_name) SDL_strlcpy(task_name, p, maxlen); 260 if (task_name[0] == 0) SDL_strlcpy(task_name, "SDL Task", maxlen);
|
/packages/apps/Stk/src/com/android/stk/ |
StkInputActivity.java | 288 int maxLen = mStkInput.maxLen; 291 maxLen)}); 295 if (maxLen != minLen) { 296 lengthLimit = minLen + " - " + maxLen;
|
/external/liblzf/ |
lzf_c.c | 164 unsigned int maxlen = in_end - ip - len; local 165 maxlen = maxlen > MAX_REF ? MAX_REF : maxlen; 176 if (expect_true (maxlen > 16)) 201 while (len < maxlen && ref[len] == ip[len]);
|
/bionic/libc/netbsd/inet/ |
nsap_addr.c | 51 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) { 62 while ((c = *ascii++) != '\0' && len < (u_int)maxlen) {
|
/external/elfutils/libasm/ |
asm_align.c | 129 if (asmscn->content->maxlen - asmscn->content->len >= len) 144 asmscn->content->maxlen = size;
|
/external/dnsmasq/contrib/wrt/ |
dhcp_release.c | 142 static int parse_hex(char *in, unsigned char *out, int maxlen, int *mac_type) 150 while (maxlen == -1 || i < maxlen) 154 maxlen = i;
|
/external/webkit/Source/WebCore/manual-tests/wml/ |
input-format.wml | 13 Numeric(5N;maxlen=3):<input name="numeric" maxlength="3" format="5N"/><br/>
|
/external/webrtc/src/common_audio/resampler/main/interface/ |
resampler.h | 75 int maxLen, int &outLen);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
macutils.cc | 43 size_t maxlen = CFStringGetMaximumSizeForEncoding(CFStringGetLength(str16), 46 scoped_array<char> buffer(new char[maxlen]); 48 || !CFStringGetCString(str16, buffer.get(), maxlen,
|