HomeSort by relevance Sort by last modified time
    Searched full:maxsize (Results 201 - 225 of 575) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/ui/
ui.h 131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
ui_openssl.c 421 int maxsize = BUFSIZ-1; local
440 noecho_fgets(result,maxsize,tty_in);
444 p=fgets(result,maxsize,tty_in);
446 p=fgets(result,maxsize,tty_in);
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
ui.h 131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 76 MaxSize = MatrixType::MaxRowsAtCompileTime,
77 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : (MaxSize > 1 ? MaxSize - 1 : 1)
  /external/lzma/C/
Xz.h 21 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 418 GLuint maxSize;
451 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
453 assert(width <= (GLsizei)maxSize);
454 assert(height <= (GLsizei)maxSize);
  /external/openssl/crypto/ui/
ui.h 131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
ui_openssl.c 421 int maxsize = BUFSIZ-1; local
440 noecho_fgets(result,maxsize,tty_in);
444 p=fgets(result,maxsize,tty_in);
446 p=fgets(result,maxsize,tty_in);
  /external/openssl/include/openssl/
ui.h 131 char *result_buf, int minsize, int maxsize);
133 char *result_buf, int minsize, int maxsize);
135 char *result_buf, int minsize, int maxsize, const char *test_buf);
137 char *result_buf, int minsize, int maxsize, const char *test_buf);
  /external/smack/src/org/jivesoftware/smack/util/
Cache.java 94 * @param maxSize the maximum number of objects the cache will hold. -1
99 public Cache(int maxSize, long maxLifetime) {
100 if (maxSize == 0) {
103 this.maxCacheSize = maxSize;
  /external/valgrind/main/coregrind/
pub_core_signals.h 82 extern Bool VG_(extend_stack)(Addr addr, UInt maxsize);
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3InputStream.cpp 32 /*maxSize*/0, format) {
  /frameworks/base/libs/hwui/
GradientCache.h 136 void setMaxSize(uint32_t maxSize);
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h 86 size_t maxSize() const;
  /frameworks/compile/mclinker/lib/LD/
BranchIsland.cpp 81 size_t BranchIsland::maxSize() const
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gl.py 48 'makeobj', 'maketag', 'mapcolor', 'mapw', 'mapw2', 'maxsize',
test_mmap.py 685 if sys.maxsize < 0x180000000:
686 # On 32 bit platforms the file is larger than sys.maxsize so
711 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
715 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
test_str.py 46 format_string = "%{}f".format(sys.maxsize + 1)
387 format_string = ".{}f".format(sys.maxsize + 1)
392 format_string = "{}f".format(sys.maxsize + 1)
397 format_string = "{{{}:.6f}}".format(sys.maxsize + 1)
test_struct.py 11 IS32BIT = sys.maxsize == 0x7fffffff
550 hugecount = '{}b'.format(sys.maxsize+1)
553 hugecount2 = '{}b{}H'.format(sys.maxsize//2, sys.maxsize//2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gl.py 48 'makeobj', 'maketag', 'mapcolor', 'mapw', 'mapw2', 'maxsize',
test_mmap.py 685 if sys.maxsize < 0x180000000:
686 # On 32 bit platforms the file is larger than sys.maxsize so
711 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
715 @unittest.skipUnless(sys.maxsize > _4G, "test cannot run on 32-bit systems")
test_str.py 46 format_string = "%{}f".format(sys.maxsize + 1)
387 format_string = ".{}f".format(sys.maxsize + 1)
392 format_string = "{}f".format(sys.maxsize + 1)
397 format_string = "{{{}:.6f}}".format(sys.maxsize + 1)
test_struct.py 11 IS32BIT = sys.maxsize == 0x7fffffff
550 hugecount = '{}b'.format(sys.maxsize+1)
553 hugecount2 = '{}b{}H'.format(sys.maxsize//2, sys.maxsize//2)
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 1404 int maxsize = 0; local
1649 int maxsize = 0; local
    [all...]
  /frameworks/base/obex/javax/obex/
ObexHelper.java 688 * @param maxSize the maximum size of a packet
692 public static int findHeaderEnd(byte[] headerArray, int start, int maxSize) {
699 while ((fullLength < maxSize) && (index < headerArray.length)) {
745 * header is less then maxSize. If it is, return the length of the
749 if (fullLength < maxSize) {
    [all...]

Completed in 1115 milliseconds

1 2 3 4 5 6 7 891011>>