Home
last modified time | relevance | path

Searched refs:MAXLEN (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dcbiditst.c28 #define MAXLEN MAX_STRING_LENGTH macro
180 pBiDi=ubidi_openSized(MAXLEN, 0, &errorCode); in testBidi()
207 UChar string[MAXLEN]; in doTests()
450 char levelChars[MAXLEN]; in printCaseInfo()
529 int32_t visMap[MAXLEN]; in checkWhatYouCan()
530 int32_t logMap[MAXLEN]; in checkWhatYouCan()
531 char accumSrc[MAXLEN]; in checkWhatYouCan()
532 char accumDst[MAXLEN]; in checkWhatYouCan()
732 char formatChars[MAXLEN]; in testReorder()
742 UChar src[MAXLEN]; in testReorder()
[all …]
/external/linux-kselftest/tools/testing/selftests/sysctl/
Dsysctl.sh499 echo -n "Checking sysctl maxlen is at least $MAXLEN ... "
501 perl -e 'print "A" x ('"${MAXLEN}"'-2), "B";' | \
502 dd of="${TARGET}" bs="${MAXLEN}" 2>/dev/null
512 perl -e 'print "A" x ('"${MAXLEN}"'-1), "B";' | \
513 dd of="${TARGET}" bs=$(( MAXLEN - 1 )) 2>/dev/null
523 perl -e 'print "A" x ('"${MAXLEN}"'-1), "B";' | \
524 dd of="${TARGET}" bs="${MAXLEN}" 2>/dev/null
534 perl -e 'print "A" x ('"${MAXLEN}"'-1), "BB";' | \
535 dd of="${TARGET}" bs=$(( $MAXLEN + 1 )) 2>/dev/null
564 MAXLEN=65
/external/python/cpython2/Lib/
Dmimify.py25 MAXLEN = 200 # if lines longer than this, encode as quoted-printable variable
342 if len(line) > MAXLEN:
454 MAXLEN = int(a) variable
/external/python/cpython2/Doc/library/
Dmimify.rst63 .. data:: MAXLEN
67 lines longer than :const:`MAXLEN` characters (default value 200).
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
DTestBidi.java30 private static final int MAXLEN = 256; field in TestBidi
39 bidi = new Bidi(MAXLEN, 0); in testBidi()
209 int[] visualMap4 = new int[MAXLEN]; in _testReordering()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestBidi.java27 private static final int MAXLEN = 256; field in TestBidi
36 bidi = new Bidi(MAXLEN, 0); in testBidi()
206 int[] visualMap4 = new int[MAXLEN]; in _testReordering()
/external/ltp/testcases/network/nfsv4/locks/
Dlocktests.c32 int MAXLEN = 64; variable
578 char tmp[MAXLEN], *buf; in master()
606 memset(tmp, 0, MAXLEN); in master()
/external/libnl/lib/netfilter/
Dqueue_obj.c177 diff |= NFNL_QUEUE_DIFF_VAL(MAXLEN, queue_maxlen); in nfnl_queue_compare()