HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 226 - 250 of 11074) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/tsan/
getline_nohang.cc 15 size_t size; local
21 volatile int res = getline(&line, &size, stream);
memcmp_race.cc 10 static volatile int size = 1; local
12 sink = memcmp(data0+5, data1, size);
18 static volatile int size = 4; local
20 memcpy(data0+5, data2, size);
37 // CHECK: Write of size 1 at [[ADDR]] by thread T2:
40 // CHECK: Previous read of size 1 at [[ADDR]] by thread T1:
memcpy_race.cc 10 static volatile int size = 1; local
11 memcpy(data+5, data1, size);
17 static volatile int size = 4; local
19 memcpy(data+3, data2, size);
36 // CHECK: Write of size 1 at [[ADDR]] by thread T2:
39 // CHECK: Previous write of size 1 at [[ADDR]] by thread T1:
  /external/conscrypt/src/compat/native/
ScopedUtfChars.h 53 size_t size() const { function in class:ScopedUtfChars
  /external/conscrypt/src/openjdk/native/
ScopedUtfChars.h 53 size_t size() const { function in class:ScopedUtfChars
  /external/curl/docs/examples/
getinmemory.c 34 size_t size; member in struct:MemoryStruct
39 WriteMemoryCallback(void *contents, size_t size, size_t nmemb, void *userp)
41 size_t realsize = size * nmemb;
44 mem->memory = realloc(mem->memory, mem->size + realsize + 1);
51 memcpy(&(mem->memory[mem->size]), contents, realsize);
52 mem->size += realsize;
53 mem->memory[mem->size] = 0;
67 chunk.size = 0; /* no data at this point */
97 * Now, our chunk.memory points to a memory block that is chunk.size
103 printf("%lu bytes retrieved\n", (long)chunk.size);
    [all...]
  /external/curl/tests/unit/
unit1302.c 48 size_t size = 0; variable
52 rc = Curl_base64_encode(data, "i", 1, &output, &size);
54 fail_unless(size == 4, "size should be 4");
58 rc = Curl_base64_encode(data, "ii", 2, &output, &size);
60 fail_unless(size == 4, "size should be 4");
64 rc = Curl_base64_encode(data, "iii", 3, &output, &size);
66 fail_unless(size == 4, "size should be 4")
    [all...]
  /external/deqp/framework/delibs/debase/
deSha1.h 32 deUint64 size; member in struct:deSha1Stream_s
47 void deSha1Stream_process (deSha1Stream* stream, size_t size, const void* data);
53 void deSha1_compute (deSha1* hash, size_t size, const void* data);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
ConstantPool.java 25 * Get the "size" of the constant pool. This corresponds to the
27 * always at least one more than the actual size of the constant pool,
30 * @return {@code >= 1;} the size
32 public int size(); method in interface:ConstantPool
38 * @param n {@code n >= 0, n < size();} the constant pool index
50 * @param n {@code n >= 0, n < size();} the constant pool index
65 * @param n {@code n >= 0, n < size();} the constant pool index
  /external/e2fsprogs/lib/ext2fs/
tst_bitops.c 43 int i, j, size; local
47 size = sizeof(bitarray)*8;
49 i = ext2fs_find_first_bit_set(bitarray, size);
50 while (i < size) {
52 i = ext2fs_find_next_bit_set(bitarray, size, i+1);
57 for (i=0,j=0; i < size; i++) {
175 for (i=0,j=0; i < size; i++) {
  /external/e2fsprogs/lib/ss/
invocation.c 18 #define size sizeof(ss_data *) macro
37 table = (ss_data **) malloc(2 * size);
45 ((unsigned)sci_idx+2)*size);
request_tbl.c 25 register int i, size; local
29 for (size=0; info->rqt_tables[size] != (ssrt *)NULL; size++)
31 /* size == C subscript of NULL == #elements */
32 size += 2; /* new element, and NULL */
33 t = (ssrt **)realloc(info->rqt_tables, (unsigned)size*sizeof(ssrt *));
39 if (position > size - 2)
40 position = size - 2;
42 if (size > 1
    [all...]
  /external/eigen/test/
determinant.cpp 20 Index size = m.rows(); local
22 MatrixType m1(size, size), m2(size, size);
27 VERIFY_IS_APPROX(MatrixType::Identity(size, size).determinant(), Scalar(1));
29 if(size==1) return;
30 Index i = internal::random<Index>(0, size-1);
33 j = internal::random<Index>(0, size-1)
    [all...]
  /external/elfutils/libdw/
dwarf_formref_die.c 72 size_t size; local
95 size = cu->dbg->sectiondata[IDX_debug_types]->d_size;
105 size = cu->endp - cu->startp;
108 if (unlikely (offset >= size))
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IElementList.java 22 int size (); // element count method in interface:IElementList
  /external/fio/
fifo.h 27 unsigned int size; /* the size of the allocated buffer */ member in struct:fifo
28 unsigned int in; /* data is added at offset (in % size) */
29 unsigned int out; /* data is extracted from off. (out % size) */
44 return fifo->size - fifo->in + fifo->out;
  /external/google-benchmark/test/
map_test.cc 7 std::map<int, int> ConstructRandomMap(int size) {
9 for (int i = 0; i < size; ++i) {
10 m.insert(std::make_pair(rand() % size, rand() % size));
19 const int size = state.range_x(); local
22 std::map<int, int> m = ConstructRandomMap(size);
24 for (int i = 0; i < size; ++i) {
25 benchmark::DoNotOptimize(m.find(rand() % size));
28 state.SetItemsProcessed(state.iterations() * size);
47 const int size = state.range_x() local
    [all...]
  /external/google-breakpad/src/third_party/libdisasm/
ia32_operand.c 43 size_t size = 0; local
47 /* This sets the operand Size based on the Intel Opcode Map
52 /* Note that decoding mod ModR/M operand adjusts the size of
66 /* MODRM -- mod operand. sets size to at least 1! */
68 size = ia32_modrm_decode( buf, buf_len, op, insn,
72 size = ia32_modrm_decode( buf, buf_len, op, insn,
76 size = ia32_modrm_decode( buf, buf_len, op, insn,
80 size = ia32_modrm_decode( buf, buf_len, op, insn,
84 size = ia32_modrm_decode( buf, buf_len, op, insn,
88 /* MODRM -- reg operand. does not effect size! */
234 size_t size; local
385 size_t size; local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableAsList.java 40 public int size() { method in class:ImmutableAsList
41 return delegateCollection().size();
SingletonImmutableSet.java 43 public int size() { method in class:SingletonImmutableSet
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
AbstractListMultimapTester.java 48 assertEquals(values.size(), multimap().get(key).size());
49 assertEquals(values.size() > 0, multimap().containsKey(key));
50 assertEquals(values.size() > 0, multimap().keySet().contains(key));
51 assertEquals(values.size() > 0, multimap().keys().contains(key));
  /external/icu/icu4c/source/io/
sscanf.c 71 int32_t size = (int32_t)uprv_strlen(patternSpecification) + 1; local
74 if (size >= MAX_UCHAR_BUFFER_SIZE(patBuffer)) {
75 pattern = (UChar *)uprv_malloc(size * sizeof(UChar));
83 u_charsToUChars(patternSpecification, pattern, size);
uscanf.c 72 int32_t size = (int32_t)uprv_strlen(patternSpecification) + 1; local
75 if (size >= MAX_UCHAR_BUFFER_SIZE(patBuffer)) {
76 pattern = (UChar *)uprv_malloc(size * sizeof(UChar));
84 u_charsToUChars(patternSpecification, pattern, size);
  /external/jcommander/src/test/java/test/
QuotedMainTest.java 22 Assert.assertEquals(args.size(), 1);
  /external/jemalloc/test/unit/
bitmap.c 10 size_t size; local
13 size = bitmap_size(&binfo);
14 assert_true(size >= prev_size,
15 "Bitmap size is smaller than expected");
16 prev_size = size;

Completed in 602 milliseconds

1 2 3 4 5 6 7 8 91011>>