HomeSort by relevance Sort by last modified time
    Searched refs:isize (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/v8/src/arm64/
cpu-arm64.cc 50 uintptr_t isize = sizes.icache_line_size(); local
53 DCHECK(CountSetBits(isize, 64) == 1);
55 uintptr_t istart = start & ~(isize - 1);
91 "add %[iline], %[iline], %[isize] \n\t"
104 [isize] "r" (isize),
  /external/vixl/src/aarch64/
cpu-aarch64.cc 96 uintptr_t isize = static_cast<uintptr_t>(icache_line_size_); local
98 uintptr_t iline = start & ~(isize - 1);
102 VIXL_ASSERT(IsPowerOf2(isize));
155 iline += isize;
  /external/tensorflow/tensorflow/python/kernel_tests/
map_stage_op_test.py 361 isize = stager.incomplete_size()
367 self.assertTrue(sess.run([size, isize]) == [0, 0])
370 self.assertTrue(sess.run([size, isize]) == [0, 1])
373 self.assertTrue(sess.run([size, isize]) == [0, 2])
378 self.assertTrue(sess.run([size, isize]) == [1, 1])
390 self.assertTrue(sess.run([size, isize]) == [0, 1])
418 isize = stager.incomplete_size()
424 self.assertTrue(sess.run([size, isize]) == [0, 0])
427 self.assertTrue(sess.run([size, isize]) == [0, 1])
430 self.assertTrue(sess.run([size, isize]) == [0, 2]
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ppp-comp.h 81 unsigned char *obuf, int isize, int osize);
101 int (*decompress) (void *state, unsigned char *ibuf, int isize,
jffs2.h 151 jint32_t isize; /* Total resultant size of this inode (used for truncations) */ member in struct:jffs2_raw_inode
  /toolchain/binutils/binutils-2.27/gas/config/
tc-microblaze.c 903 unsigned isize; local
939 isize = 4;
987 output = frag_more (isize);
1038 isize * 2, /* maxm of 2 words. */
1039 isize, /* minm of 1 word. */
1048 output = frag_more (isize);
1080 output = frag_more (isize);
1108 output = frag_more (isize);
1146 output = frag_more (isize);
1184 output = frag_more (isize);
    [all...]
tc-nds32.c     [all...]
  /external/ltp/utils/ffsb-6.0-rc2/
rbt.c 222 tree->isize = 0;
246 tree->isize = 0;
261 return tree->isize;
296 tree->isize = 1;
348 tree->isize++;
373 tree->isize = 1;
409 tree->isize++;
433 tree->isize = 1;
469 tree->isize++;
494 if (tree->isize == 1)
    [all...]
rbt.h 147 int isize; /* number of objects stored */ member in struct:red_black_tree
  /external/lz4/lib/
lz4.h 148 #define LZ4_COMPRESSBOUND(isize) ((unsigned)(isize) > (unsigned)LZ4_MAX_INPUT_SIZE ? 0 : (isize) + ((isize)/255) + 16)
446 /* int LZ4_uncompress_unknownOutputSize (const char* source, char* dest, int isize, int maxOutputSize); */
  /external/vboot_reference/utility/
bmpblk_util.c 100 uint32_t isize; local
106 isize = img->compressed_size;
108 r = EfiGetInfo(ibuf, isize, &osize, &ssize);
132 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
149 uint32_t isize; local
155 isize = img->compressed_size;
174 stream.avail_in = isize;
efidecompress.c 1040 uint32_t isize = (uint32_t)istat.st_size; local
1042 printf("%s is %d bytes\n", infile, isize);
1055 uint8_t *ibuf = malloc(isize);
1059 isize,
1063 if (1 != fread(ibuf, isize, 1, ifp)) {
1066 isize,
1074 EFI_STATUS r = GetInfo(ibuf, isize, &osize, &ssize);
1103 r = TianoDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
1110 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
1119 printf("Uncompressed %d bytes to %d bytes\n", isize, osize)
    [all...]
eficompress.c 1641 uint32_t isize = (uint32_t)istat.st_size; local
1643 printf("%s is %d bytes\n", infile, isize);
1656 uint8_t *ibuf = malloc(isize);
1660 isize,
1664 if (1 != fread(ibuf, isize, 1, ifp)) {
1667 isize,
1673 uint32_t osize = isize;
1684 EFI_STATUS r = EfiCompress(ibuf, isize, obuf, &osize);
1692 printf("Compressed %d bytes to %d bytes\n", isize, osize);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/zlib/
minigzip.py 101 isize = read32(input)
104 if isize != length:
  /external/python/cpython2/Demo/zlib/
minigzip.py 101 isize = read32(input)
104 if isize != length:
  /external/webrtc/talk/session/media/
yuvscaler_unittest.cc 102 size_t isize = I420_SIZE(iw, ih); local
105 new uint8_t[isize + kAlignment + memoffset]());
123 memset(ibuf, 213, isize); // Input is constant color.
129 FlushCache(ibuf, isize);
143 FlushCache(ibuf, isize);
  /external/valgrind/lackey/
lk_main.c 527 static void addEvent_Ir ( IRSB* sb, IRAtom* iaddr, UInt isize )
531 tl_assert( (VG_MIN_INSTR_SZB <= isize && isize <= VG_MAX_INSTR_SZB)
532 || VG_CLREQ_SZB == isize );
539 evt->size = isize;
    [all...]
  /external/skia/tools/viewer/
SlideDir.cpp 70 const auto isize = fSlide->getDimensions(); variable
71 return SkRect::MakeIWH(isize.width(), isize.height());
  /external/valgrind/cachegrind/
cg_main.c 332 //VG_(printf)("1IrGen_0D : CCaddr=0x%010lx, iaddr=0x%010lx, isize=%lu\n",
342 //VG_(printf)("1IrNoX_0D : CCaddr=0x%010lx, iaddr=0x%010lx, isize=%lu\n",
387 //VG_(printf)("1IrNoX_1Dr: CCaddr=0x%010lx, iaddr=0x%010lx, isize=%lu\n"
402 //VG_(printf)("1IrNoX_1Dw: CCaddr=0x%010lx, iaddr=0x%010lx, isize=%lu\n"
1049 UInt isize; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
jffs2.h 101 jint32_t isize; member in struct:jffs2_raw_inode
  /external/kernel-headers/original/uapi/linux/
jffs2.h 151 jint32_t isize; /* Total resultant size of this inode (used for truncations) */ member in struct:jffs2_raw_inode
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodedata.c 503 Py_ssize_t space, isize; local
508 isize = PyUnicode_GET_SIZE(input);
510 space = (isize > 10 ? 10 : isize) + isize;
515 end = i + isize;
    [all...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/stlport/stlport/
printers.py 439 self.isize = 8 * self.item.dereference().type.sizeof
458 if self.io >= self.isize:
487 isize = 8 * start.dereference().type.sizeof
488 length = (isize - so) + isize * (finish - start - 1) + fo
489 capacity = isize * (end - start)
  /prebuilts/gdb/linux-x86/share/pretty-printers/stlport/stlport/
printers.py 439 self.isize = 8 * self.item.dereference().type.sizeof
458 if self.io >= self.isize:
487 isize = 8 * start.dereference().type.sizeof
488 length = (isize - so) + isize * (finish - start - 1) + fo
489 capacity = isize * (end - start)
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/stlport/
printers.py 438 self.isize = 8 * self.item.dereference().type.sizeof
457 if self.io >= self.isize:
486 isize = 8 * start.dereference().type.sizeof
487 length = (isize - so) + isize * (finish - start - 1) + fo
488 capacity = isize * (end - start)

Completed in 892 milliseconds

1 2 3 4