/bionic/linker/ |
linker_mapped_file_fragment.h | 28 bool Map(int fd, off64_t base_offset, size_t elf_offset, size_t size); 31 size_t size() const { return size_; } function in class:MappedFileFragment
|
linker_sleb128.h | 32 static const size_t size = CHAR_BIT * sizeof(value); local 46 if (shift < size && (byte & 64)) {
|
/dalvik/dexgen/src/com/android/dexgen/rop/ |
FieldList.java | 37 * @return the size 39 public int size(); method in interface:FieldList 44 * @param n {@code n >= 0, n < size();} which field
|
/dalvik/dexgen/src/com/android/dexgen/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
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
FieldList.java | 37 * @return the size 39 public int size(); method in interface:FieldList 44 * @param n {@code n >= 0, n < size();} which field
|
MethodList.java | 36 * @return the size 38 public int size(); method in interface:MethodList 43 * @param n {@code n >= 0, n < size();} which method
|
/development/tutorials/MoarRam/jni/ |
baz.c | 38 int size; local 42 size = 17; 45 size = 71; 48 ptr = malloc(size); 53 size, ptr); 62 int size; local 66 size = 17; 69 size = 71; 73 ALOGW("All %d-byte blocks are freed", size); 81 size, ptr) [all...] |
/device/google/dragon/audio/hal/ |
dictionary.h | 43 int size ; /** Storage size */ member in struct:_dictionary_ 71 @param size Optional initial size of the dictionary. 74 This function allocates a new dictionary object of given size and returns 76 dictionary, give size=0. 79 dictionary * dictionary_new(int size);
|
/device/huawei/angler/camera/QCamera2/stack/mm-jpeg-interface/inc/ |
mm_jpeg_ionbuf.h | 46 size_t size; member in struct:__anon3664
|
/device/lge/bullhead/camera/QCamera2/stack/mm-jpeg-interface/inc/ |
mm_jpeg_ionbuf.h | 46 size_t size; member in struct:__anon4216
|
/device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/inc/ |
mm_jpeg_ionbuf.h | 47 long size; member in struct:__anon4995
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
StackExtensions.cs | 69 public static int size<T>( this Stack<T> stack ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions 75 public static void setSize<T>( this Stack<T> stack, int size ) 77 if ( size > stack.Count ) 80 while ( stack.Count > size )
|
/external/autotest/client/site_tests/platform_TraceClockMonotonic/src/ |
ftrace-clock-monotonic.c | 21 int size, ret; local 34 size = snprintf(buf, 1024, "%s: %lu.%06lu\n", 36 ret = write(fd, buf, size); 37 if (ret < size) {
|
/external/autotest/frontend/client/src/autotest/common/ |
UnmodifiableSublistView.java | 8 protected int start, size; field in class:UnmodifiableSublistView 10 public UnmodifiableSublistView(List<T> list, int start, int size) { 12 assert size >= 0; local 13 assert start + size <= list.size(); local 17 this.size = size; 22 if (arg0 >= size()) 28 public int size() { method in class:UnmodifiableSublistView 29 return this.size; [all...] |
/external/avahi/avahi-common/ |
domain-test.c | 35 size_t size; local 72 size = sizeof(r); 75 printf("escaped: <%s>\n", avahi_escape_label(t, strlen(t), &s, &size));
|
strlst-test.c | 34 size_t size, n; local 59 size = avahi_string_list_serialize(a, data, sizeof(data)); 60 assert(size == n); 62 printf("%zu\n", size); 64 for (t = (char*) data, n = 0; n < size; n++, t++) { 73 assert(avahi_string_list_parse(data, size, &b) == 0); 119 size = avahi_string_list_serialize(NULL, data, sizeof(data)); 120 assert(size == 1); 121 assert(size == n); 123 assert(avahi_string_list_parse(data, size, &a) == 0) [all...] |
/external/boringssl/src/crypto/perlasm/ |
x86_64-xlate.pl | 129 sub size { 231 sub size {} 316 sub size { 507 } elsif (!$elf && $dir =~ /\.size/) { 602 /\.size/ && do { if (defined($current_function)) { 888 if ($arg=register->re(\$line)) { opcode->size($arg->size()); } 903 my $sz=opcode->size(); 906 $insn = $opcode->out($#args>=1?$args[$#args]->size():$sz); 1048 # .size function,.-functio 128 sub size { subroutine 230 sub size {} subroutine 315 sub size { subroutine [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
StringList.java | 25 int size(); method in interface:StringList
|
/external/ceres-solver/internal/ceres/ |
local_parameterization.cc | 39 IdentityParameterization::IdentityParameterization(const int size) 40 : size_(size) { 41 CHECK_GT(size, 0); 59 int size, 61 : local_size_(size - constant_parameters.size()), 62 constancy_mask_(size, 0) { 63 CHECK_GT(constant_parameters.size(), 0) 72 CHECK_LT(constant_parameters.size(), size) 79 CHECK_LT(*max_element(constant.begin(), constant.end()), size); local [all...] |
/external/clang/test/Analysis/ |
pr_4164.c | 11 // The basic issue is that the VarRegion for 'size' is casted to (char*), 21 int size; local 22 socklen_t size_len = sizeof(size); 23 if (getsockopt(s, 0xffff, 0x1001, (char *)&size, &size_len) < 0) 26 return size; // no-warning 36 int size; local 37 if (takes_charptr((char*)&size)) 39 return size; // no-warning
|
/external/clang/test/CodeGenCXX/ |
sanitize-dtor-fn-attribute.cpp | 9 int size; member in class:Vector
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_tls_get_addr.h | 40 uptr beg, size; member in struct:__sanitizer::DTLS::DTV 51 // Returns pointer and size of a linker-allocated TLS block. 55 void DTLS_on_libc_memalign(void *ptr, uptr size);
|
/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:
|