HomeSort by relevance Sort by last modified time
    Searched defs:size2 (Results 1 - 25 of 290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/vulkan-validation-layers/libs/glm/gtx/
std_based_type.hpp 56 typedef detail::tvec2<std::size_t, defaultp> size2; typedef in namespace:glm
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
3-1.c 17 * 2. Map size2 = (_SC_PAGE_SIZE + 1) bytes into memory, starting at the same
49 size_t size2; local
56 size2 = page_size + 1;
110 mmap(pa, size2, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_FIXED, fd2,
132 munmap(pa2, size2);
  /external/swiftshader/third_party/subzero/crosstest/
test_stacksave.c 59 uint32_t size2 = size - j; local
61 uint32_t mid2 = size2 / 2;
62 uint32_t vla2[size2];
63 for (uint32_t k = start2; k < size2; ++k) {
67 vla1[j] = (vla2[start2] << 2) + (vla2[mid2] << 1) + vla2[size2 - 1];
  /external/valgrind/drd/tests/
custom_alloc.c 30 int size2 = size + RZ*2; local
33 if (hp + size2 > hp_lim) {
39 hp += size2;
  /external/valgrind/massif/tests/
custom_alloc.c 30 int size2 = size + RZ*2; local
33 if (hp + size2 > hp_lim) {
39 hp += size2;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/
SizeFileComparator.java 115 long size2 = 0; local
117 size2 = sumDirectoryContents && file2.exists() ? FileUtils.sizeOfDirectory(file2) : 0;
119 size2 = file2.length();
121 long result = size1 - size2;
  /bionic/tests/
sched_test.cpp 218 size_t size2 = CPU_ALLOC_SIZE(set_size2); local
225 CPU_ZERO_S(size2, set2);
229 CPU_SET_S(0, size2, set2);
256 size_t size2 = CPU_ALLOC_SIZE(set_size2); local
262 CPU_ZERO_S(size2, set2);
267 CPU_SET_S(0, size2, set2);
  /external/valgrind/memcheck/tests/
custom_alloc.c 36 int size2 = size + RZ*2; local
39 if (hp + size2 > hp_lim) {
45 hp += size2;
  /external/webrtc/webrtc/modules/audio_device/mac/portaudio/
pa_ringbuffer.c 104 ** If the region is contiguous, size2 will be zero.
105 ** If non-contiguous, size2 will be the size of second region.
151 ** If the region is contiguous, size2 will be zero.
152 ** If non-contiguous, size2 will be the size of second region.
199 PaRingBufferSize size1, size2, numWritten; local
201 numWritten = PaUtil_GetRingBufferWriteRegions( rbuf, elementCount, &data1, &size1, &data2, &size2 );
202 if( size2 > 0 )
207 memcpy( data2, data, size2*rbuf->elementSizeBytes );
222 PaRingBufferSize size1, size2, numRead; local
224 numRead = PaUtil_GetRingBufferReadRegions( rbuf, elementCount, &data1, &size1, &data2, &size2 );
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
7zStream.c 73 size_t size2 = p->size - p->pos; local
74 if (size2 == 0 && *size > 0)
77 size2 = LookToRead_BUF_SIZE;
78 res = p->realStream->Read(p->realStream, p->buf, &size2);
79 p->size = size2;
81 if (size2 < *size)
82 *size = size2;
91 size_t size2 = p->size - p->pos; local
92 if (size2 == 0 && *size > 0)
98 size2 = p->size = *size;
    [all...]
  /external/eigen/bench/
benchVecAdd.cpp 24 int size2 = size * size; local
25 Scalar* a = internal::aligned_new<Scalar>(size2);
26 Scalar* b = internal::aligned_new<Scalar>(size2+4)+1;
27 Scalar* c = internal::aligned_new<Scalar>(size2);
40 benchVec(a, b, c, size2);
43 std::cout << timer.value() << "s " << (double(size2*REPEAT)/timer.value())/(1024.*1024.*1024.) << " GFlops\n";
47 if (size2%innersize==0)
49 int outersize = size2/innersize;
60 std::cout << innersize << " x " << outersize << " " << timer.value() << "s " << (double(size2*REPEAT)/timer.value())/(1024.*1024.*1024.) << " GFlops\n";
64 VectorXf va = Map<VectorXf>(a, size2);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapSizeTester.java 52 int size2 = 0; local
54 size2 += entry2.getValue().size();
56 assertEquals(expectedSize, size2);
  /external/libcups/cups/
testpwg.c 416 *size2; /* Size from saved */ local
455 for (i = pc->num_sizes, size = pc->sizes, size2 = pc2->sizes;
457 i --, size ++, size2 ++)
459 if (strcmp(size2->map.pwg, size->map.pwg) ||
460 strcmp(size2->map.ppd, size->map.ppd) ||
461 size2->width != size->width ||
462 size2->length != size->length ||
463 size2->left != size->left ||
464 size2->bottom != size->bottom ||
465 size2->right != size->right |
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_struct_namevalue.c 36 int size2; variable
294 size2 = sizeof(pairs_different)/sizeof(pairs_different[0]);
296 for(i=0;i<size2; i+=2)
329 for(i=size2 - 2; i >= 0; i-=2)
  /external/lzma/C/
7zStream.c 75 size_t size2 = p->size - p->pos; local
76 if (size2 == 0 && *size > 0)
79 size2 = LookToRead_BUF_SIZE;
80 res = p->realStream->Read(p->realStream, p->buf, &size2);
81 p->size = size2;
83 if (size2 < *size)
84 *size = size2;
93 size_t size2 = p->size - p->pos; local
94 if (size2 == 0 && *size > 0)
100 size2 = p->size = *size;
    [all...]
  /external/dtc/tests/
dtbs_equal_ordered.c 59 uint64_t addr1, size1, addr2, size2; local
66 CHECK(fdt_get_mem_rsv(fdt2, i, &addr2, &size2));
68 if ((addr1 != addr2) || (size1 != size2))
74 (unsigned long long)size2);
dtbs_equal_unordered.c 78 uint64_t addr1, size1, addr2, size2; local
91 CHECK(fdt_get_mem_rsv(fdt2, i, &addr2, &size2));
93 if ((addr1 != addr2) || (size1 != size2))
99 (unsigned long long)size2);
  /packages/apps/DevCamera/src/com/android/devcamera/
CameraDeviceReport.java 92 Size size2 = p.get(CameraCharacteristics.SENSOR_INFO_PIXEL_ARRAY_SIZE); local
93 Log.v(TAG, "SENSOR_INFO_PIXEL_ARRAY_SIZE: " + size2.getWidth() + "x" + size2.getHeight());
  /art/runtime/
reference_table.cc 147 const size_t size2 = obj2->SizeOf(); local
148 if (size1 != size2) {
149 return size1 < size2;
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 134 int size2 = iterator.getCodeLength(); local
135 if (size != size2) // the body was modified.
136 endPos += size2 - size;
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_build_util.cpp 339 int size2 = (baseSize2[mask] >> 12) & 0xf; local
347 if (size2) {
349 reg->reg.size = size2 << unit;
  /external/skia/src/ports/
SkFontConfigInterface_direct.cpp 139 size_t size2 = iden1.readFromMemory(storage.get(), size1); local
140 SkASSERT(size2 == size1);
  /external/skia/tests/
FontHostTest.cpp 210 size_t size2 = face->getTableData(tags[i], 0, size, data.get()); local
211 REPORTER_ASSERT(reporter, size2 == size);
  /external/tpm2/
Object_spt.c 33 UINT16 size2; local
51 size2 = TPMU_PUBLIC_PARMS_Marshal(&publicArea2->parameters, &buffer,
53 if(size1 != size2 || !MemoryEqual(params1, params2, size1))
    [all...]
  /external/zopfli/src/zopfli/
lz77.c 61 size_t size2 = store->size; /* Needed for using ZOPFLI_APPEND_DATA twice. */ local
63 ZOPFLI_APPEND_DATA(dist, &store->dists, &size2);

Completed in 1060 milliseconds

1 2 3 4 5 6 7 8 91011>>