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

1 2 3

  /external/clang/test/CodeGen/
attr-minsize.cpp 7 // Check that we set the minsize attribute on each function
10 __attribute__((minsize))
13 // Oz: @{{.*}}test1{{.*}}[[MINSIZE:#[0-9]+]]
19 // Oz: @{{.*}}test2{{.*}}[[MINSIZE]]
28 // Oz: @{{.*}}test3{{.*}}[[MINSIZE]]
35 // Check that the minsize attribute is well propagated through
39 __attribute__((minsize))
47 // Oz: [[MINSIZE]]
54 // Oz: [[MINSIZE]]
66 // Oz: [[MINSIZE]]
    [all...]
  /external/clang/test/SemaCXX/
attr-optnone.cpp 15 int bay() __attribute__((minsize)) __attribute__((optnone)); // expected-warning{{'minsize' attribute ignored}} expected-note{{conflicting}}
16 int quy() __attribute__((optnone)) __attribute__((minsize)); // expected-warning{{'minsize' attribute ignored}} expected-note{{conflicting}}
18 __attribute__((minsize)) int bay1(); // expected-warning{{'minsize' attribute ignored}}
22 __attribute__((minsize)) int quy1() { return 1; } // expected-warning{{'minsize' attribute ignored}}
25 __attribute__((minsize)) // expected-warning{{'minsize' attribute ignored}
    [all...]
pragma-optimize.cpp 61 // attribute would conflict with `minsize`.
62 int __attribute__((minsize)) bax(int z) {
  /external/elfutils/libdw/
libdw_alloc.c 42 __libdw_allocate (Dwarf *dbg, size_t minsize, size_t align)
46 2 * minsize + offsetof (struct libdw_memblock, mem)));
54 newp->remaining = (uintptr_t) newp + size - (result + minsize);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bigmem.py 28 # - While the bigmemtest decorator speaks of 'minsize', all tests will
37 @bigmemtest(minsize=_2G, memuse=2)
46 @bigmemtest(minsize=_2G + 10, memuse=1)
73 @bigmemtest(minsize=_2G, memuse=2)
84 @bigmemtest(minsize=_2G + 2, memuse=3)
96 @bigmemtest(minsize=_2G + 2, memuse=3)
136 @bigmemtest(minsize=_2G, memuse=2)
147 @bigmemtest(minsize=_2G + 10, memuse=2)
159 @bigmemtest(minsize=_2G, memuse=2)
175 @bigmemtest(minsize=_2G, memuse=2
    [all...]
test_ucn.py 146 @test_support.bigmemtest(minsize=_testcapi.UINT_MAX + 1,
150 if size < func.minsize:
152 (func.minsize * func.memuse / float(1024**3),))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bigmem.py 28 # - While the bigmemtest decorator speaks of 'minsize', all tests will
37 @bigmemtest(minsize=_2G, memuse=2)
46 @bigmemtest(minsize=_2G + 10, memuse=1)
73 @bigmemtest(minsize=_2G, memuse=2)
84 @bigmemtest(minsize=_2G + 2, memuse=3)
96 @bigmemtest(minsize=_2G + 2, memuse=3)
136 @bigmemtest(minsize=_2G, memuse=2)
147 @bigmemtest(minsize=_2G + 10, memuse=2)
159 @bigmemtest(minsize=_2G, memuse=2)
175 @bigmemtest(minsize=_2G, memuse=2
    [all...]
test_ucn.py 146 @test_support.bigmemtest(minsize=_testcapi.UINT_MAX + 1,
150 if size < func.minsize:
152 (func.minsize * func.memuse / float(1024**3),))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bigmem.py 28 # - While the bigmemtest decorator speaks of 'minsize', all tests will
37 @bigmemtest(minsize=_2G, memuse=2)
46 @bigmemtest(minsize=_2G + 10, memuse=1)
73 @bigmemtest(minsize=_2G, memuse=2)
84 @bigmemtest(minsize=_2G + 2, memuse=3)
96 @bigmemtest(minsize=_2G + 2, memuse=3)
136 @bigmemtest(minsize=_2G, memuse=2)
147 @bigmemtest(minsize=_2G + 10, memuse=2)
159 @bigmemtest(minsize=_2G, memuse=2)
175 @bigmemtest(minsize=_2G, memuse=2
    [all...]
test_ucn.py 146 @test_support.bigmemtest(minsize=_testcapi.UINT_MAX + 1,
150 if size < func.minsize:
152 (func.minsize * func.memuse / float(1024**3),))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bigmem.py 28 # - While the bigmemtest decorator speaks of 'minsize', all tests will
37 @bigmemtest(minsize=_2G, memuse=2)
46 @bigmemtest(minsize=_2G + 10, memuse=1)
73 @bigmemtest(minsize=_2G, memuse=2)
84 @bigmemtest(minsize=_2G + 2, memuse=3)
96 @bigmemtest(minsize=_2G + 2, memuse=3)
136 @bigmemtest(minsize=_2G, memuse=2)
147 @bigmemtest(minsize=_2G + 10, memuse=2)
159 @bigmemtest(minsize=_2G, memuse=2)
175 @bigmemtest(minsize=_2G, memuse=2
    [all...]
test_ucn.py 146 @test_support.bigmemtest(minsize=_testcapi.UINT_MAX + 1,
150 if size < func.minsize:
152 (func.minsize * func.memuse / float(1024**3),))
  /external/dnsmasq/contrib/wrt/
dhcp_lease_time.c 71 static unsigned char *option_find1(unsigned char *p, unsigned char *end, int opt, int minsize)
87 if (*p == opt && opt_len >= minsize)
96 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize)
101 if ((ret = option_find1(&mess->options[0], ((unsigned char *)mess) + size, opt_type, minsize)))
110 (ret = option_find1(&mess->file[0], &mess->file[128], opt_type, minsize)))
115 (ret = option_find1(&mess->sname[0], &mess->sname[64], opt_type, minsize)))
  /ndk/sources/host-tools/make-3.81/
strcache.c 186 int totsize = 0, avgsize, maxsize = 0, minsize = bufsize; local
200 minsize = (sz < minsize ? sz : minsize);
213 prefix, totsize, maxsize, minsize, avgsize);
  /external/jemalloc/src/
base.c 42 base_chunk_alloc(size_t minsize)
48 assert(minsize != 0);
52 csize = CHUNK_CEILING(minsize + nsize);
  /external/opencv3/modules/cudaimgproc/test/
test_mean_shift.cpp 130 IMPLEMENT_PARAM_CLASS(MinSize, int);
133 PARAM_TEST_CASE(MeanShiftSegmentation, cv::cuda::DeviceInfo, MinSize)
136 int minsize; local
141 minsize = GET_PARAM(1);
153 path << "meanshift/cones_segmented_sp10_sr10_minsize" << minsize; local
162 cv::cuda::meanShiftSegmentation(loadMat(img), dst, 10, 10, minsize); local
172 testing::Values(MinSize(0), MinSize(4), MinSize(20), MinSize(84), MinSize(340), MinSize(1364))))
    [all...]
  /external/opencv3/modules/cudaimgproc/perf/
perf_mean_shift.cpp 137 const int minsize = 20; local
144 TEST_CYCLE() cv::cuda::meanShiftSegmentation(d_src, dst, sp, sr, minsize);
  /external/boringssl/src/crypto/asn1/
a_strnid.c 134 tbl->minsize, tbl->maxsize);
210 long minsize, long maxsize, unsigned long mask,
231 if(minsize != -1) tmp->minsize = minsize;
a_mbstr.c 92 long minsize, long maxsize)
144 if((minsize > 0) && (nchar < minsize)) {
146 BIO_snprintf(strbuf, sizeof strbuf, "%ld", minsize);
147 ERR_add_error_data(2, "minsize=", strbuf);
  /external/libvorbis/lib/
bitrate.c 180 long minsize=(min_target_bits-bm->minmax_reservoir+7)/8; local
187 minsize-=oggpack_bytes(vbi->packetblob[choice]);
188 while(minsize-->0)oggpack_write(vbi->packetblob[choice],0,8);
  /external/opencv3/modules/cudaimgproc/src/
mssegmentation.cpp 225 void cv::cuda::meanShiftSegmentation(InputArray _src, OutputArray _dst, int sp, int sr, int minsize, TermCriteria criteria, Stream& stream)
353 if (c1 != c2 && (comps.size[c1] < minsize || comps.size[c2] < minsize))
  /external/opencv3/modules/core/include/opencv2/core/
utility.hpp 842 size_t i, prevsize = sz, minsize = MIN(prevsize, _size); local
849 for( i = 0; i < minsize; i++ )
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
SearchDialogBase.py 45 self.top.grid_columnconfigure(1, pad=2, minsize=100, weight=100)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
SearchDialogBase.py 45 self.top.grid_columnconfigure(1, pad=2, minsize=100, weight=100)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
SearchDialogBase.py 45 self.top.grid_columnconfigure(1, pad=2, minsize=100, weight=100)

Completed in 330 milliseconds

1 2 3