/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm-generic/ |
ioctl.h | 5 * size of the parameter structure in the lower 14 bits of the 7 * Encoding the size of the parameter structure in the ioctl request 11 * NOTE: This limits the max parameter size to 16kB -1 ! 44 #define _IOC(dir,type,nr,size) \ 48 ((size) << _IOC_SIZESHIFT)) 50 /* provoke compile error for invalid uses of size argument */ 59 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) 60 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) [all...] |
/frameworks/base/docs/html/sdk/api_diff/15/changes/ |
classes_index_all.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#C"><font size="-2">C</font></a> 54 <a href="#F"><font size="-2">F</font></a> 55 <a href="#G"><font size="-2">G</font></a> 56 <a href="#I"><font size="-2">I</font></a> 57 <a href="#K"><font size="-2">K</font></a> 58 <a href="#M"><font size="-2">M</font></a> 59 <a href="#R"><font size="-2">R</font></a> [all...] |
fields_index_all.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#C"><font size="-2">C</font></a> 54 <a href="#E"><font size="-2">E</font></a> 55 <a href="#F"><font size="-2">F</font></a> 56 <a href="#G"><font size="-2">G</font></a> 57 <a href="#I"><font size="-2">I</font></a> 58 <a href="#K"><font size="-2">K</font></a> 59 <a href="#L"><font size="-2">L</font></a> [all...] |
/frameworks/base/docs/html/sdk/api_diff/16/changes/ |
fields_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#C"><font size="-2">C</font></a> 53 <a href="#E"><font size="-2">E</font></a> 54 <a href="#F"><font size="-2">F</font></a> 55 <a href="#L"><font size="-2">L</font></a> 56 <a href="#M"><font size="-2">M</font></a> 57 <a href="#N"><font size="-2">N</font></a> 58 <a href="#O"><font size="-2">O</font></a> 59 <a href="#R"><font size="-2">R</font></a> [all...] |
/frameworks/base/docs/html/sdk/api_diff/19/changes/ |
constructors_index_all.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#C"><font size="-2">C</font></a> 53 <a href="#D"><font size="-2">D</font></a> 54 <a href="#F"><font size="-2">F</font></a> 55 <a href="#G"><font size="-2">G</font></a> 56 <a href="#I"><font size="-2">I</font></a> 57 <a href="#J"><font size="-2">J</font></a> 58 <a href="#L"><font size="-2">L</font></a> 59 <a href="#M"><font size="-2">M</font></a> [all...] |
constructors_index_additions.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#C"><font size="-2">C</font></a> 53 <a href="#D"><font size="-2">D</font></a> 54 <a href="#F"><font size="-2">F</font></a> 55 <a href="#G"><font size="-2">G</font></a> 56 <a href="#J"><font size="-2">J</font></a> 57 <a href="#L"><font size="-2">L</font></a> 58 <a href="#N"><font size="-2">N</font></a> 59 <a href="#P"><font size="-2">P</font></a> [all...] |
/frameworks/base/docs/html/sdk/api_diff/7/changes/ |
alldiffs_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 52 <br><font size="+2">A</font> 53 <a href="#B"><font size="-2">B</font></a> 54 <a href="#C"><font size="-2">C</font></a> 55 <a href="#E"><font size="-2">E</font></a> 56 <a href="#G"><font size="-2">G</font></a> 57 <a href="#I"><font size="-2">I</font></a> 58 <a href="#L"><font size="-2">L</font></a> 59 <a href="#M"><font size="-2">M</font></a> 60 <a href="#N"><font size="-2">N</font></a> [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
IntRangeManagerTest.java | 100 assertEquals("expecting empty configlist", 0, testManager.mConfigList.size()); 117 assertEquals("configlist size", 1, testManager.mConfigList.size()); 123 assertEquals("configlist size", 1, testManager.mConfigList.size()); 132 assertEquals("configlist size", 1, testManager.mConfigList.size()); 137 assertEquals("configlist size", 0, testManager.mConfigList.size()); 142 assertEquals("configlist size", 0, testManager.mConfigList.size()) [all...] |
/bionic/libc/kernel/common/linux/ |
circ_buf.h | 27 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1)) 29 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size)) 30 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;}) 31 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;} [all...] |
/external/chromium_org/cc/resources/ |
scoped_resource.cc | 18 void ScopedResource::Allocate(gfx::Size size, 22 DCHECK(!size.IsEmpty()); 24 set_dimensions(size, format); 26 size, GL_CLAMP_TO_EDGE, hint, format)); 33 void ScopedResource::AllocateManaged(gfx::Size size, 37 DCHECK(!size.IsEmpty()); 39 set_dimensions(size, format); 41 size, [all...] |
/external/chromium_org/chrome/browser/resources/print_preview/data/ |
printable_area.js | 12 * @param {!print_preview.Size} size Size of the printable area of the 16 function PrintableArea(origin, size) { 25 * Size of the printable area of the document. 26 * @type {!print_preview.Size} 29 this.size_ = size; 42 * @return {!print_preview.Size} Size of the printable area of the document. 44 get size() { [all...] |
/external/chromium_org/cloud_print/service/win/ |
service_utils.cc | 16 DWORD size = 0; local 18 ::GetComputerName(NULL, &size); 19 result.resize(size); 22 if (!::GetComputerName(&result[0], &size)) 24 result.resize(size); 38 ULONG size = 0; local 40 ::GetUserNameEx(::NameSamCompatible, NULL, &size); 41 result.resize(size); 44 if (!::GetUserNameEx(::NameSamCompatible, &result[0], &size)) 46 result.resize(size); [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
Memory.h | 15 inline void* ei_aligned_malloc(size_t size) { return internal::aligned_malloc(size); } 18 inline void* ei_handmade_aligned_malloc(size_t size) { return internal::handmade_aligned_malloc(size); } 21 template<bool Align> inline void* ei_conditional_aligned_malloc(size_t size) 23 return internal::conditional_aligned_malloc<Align>(size); 34 template<typename T> inline T* ei_aligned_new(size_t size) 36 return internal::aligned_new<T>(size); 38 template<typename T> inline void ei_aligned_delete(T *ptr, size_t size) 40 return internal::aligned_delete(ptr, size); [all...] |
/external/llvm/lib/Support/ |
LocaleXlocale.inc | 21 assert(s.size()==strlen(s.c_str())); 23 size_t size = mbstowcs_l(NULL,s.c_str(),0,l); 24 assert(size!=(size_t)-1); 25 if (size==0) 27 llvm::SmallVector<wchar_t,200> ws(size); 28 size = mbstowcs_l(&ws[0],s.c_str(),ws.size(),l); 29 assert(ws.size()==size); 30 return wcswidth_l(&ws[0],ws.size(),l) [all...] |
/external/chromium_org/third_party/lzma_sdk/ |
Bra.h | 19 size - size of data 40 size must be >= Alignment + LookAhead, if it's not last block. 41 If (size < Alignment + LookAhead), converter returns 0. 48 ; size must be >= Alignment + LookAhead, if it's not last block 49 SizeT processed = Convert(data, size, ip, 1); 51 size -= processed; 57 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding); 58 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding); 59 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) [all...] |
/external/lzma/C/ |
Bra.h | 19 size - size of data
40 size must be >= Alignment + LookAhead, if it's not last block.
41 If (size < Alignment + LookAhead), converter returns 0.
48 ; size must be >= Alignment + LookAhead, if it's not last block
49 SizeT processed = Convert(data, size, ip, 1);
51 size -= processed;
57 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding);
58 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
59 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding); [all...] |
/frameworks/base/media/mca/filterfw/jni/ |
jni_native_buffer.cpp | 20 char* GetJBufferData(JNIEnv* env, jobject buffer, int* size) { 29 if (size) { 30 *size = env->GetIntField(buffer, size_field); 39 bool AttachDataToJBuffer(JNIEnv* env, jobject buffer, char* data, int size) { 48 env->SetIntField(buffer, size_field, size); 53 jboolean Java_android_filterfw_core_NativeBuffer_allocate(JNIEnv* env, jobject thiz, jint size) { 54 char* data = new char[size]; 55 return ToJBool(AttachDataToJBuffer(env, thiz, data, size)); 72 int size; local 73 char* source_data = GetJBufferData(env, thiz, &size); [all...] |
/external/valgrind/main/coregrind/m_gdbserver/ |
valgrind-low-mips32.c | 145 transfer_direction dir, int size, Bool *mod) 155 case 0: VG_(transfer) (&mips1->guest_r0, buf, dir, size, mod); break; 156 case 1: VG_(transfer) (&mips1->guest_r1, buf, dir, size, mod); break; 157 case 2: VG_(transfer) (&mips1->guest_r2, buf, dir, size, mod); break; 158 case 3: VG_(transfer) (&mips1->guest_r3, buf, dir, size, mod); break; 159 case 4: VG_(transfer) (&mips1->guest_r4, buf, dir, size, mod); break; 160 case 5: VG_(transfer) (&mips1->guest_r5, buf, dir, size, mod); break; 161 case 6: VG_(transfer) (&mips1->guest_r6, buf, dir, size, mod); break; 162 case 7: VG_(transfer) (&mips1->guest_r7, buf, dir, size, mod); break; 163 case 8: VG_(transfer) (&mips1->guest_r8, buf, dir, size, mod); break [all...] |
valgrind-low-s390x.c | 122 transfer_direction dir, int size, Bool *mod) 135 case 1: VG_(transfer) (&s390x->guest_IA, buf, dir, size, mod); break; 136 case 2: VG_(transfer) (&s390x->guest_r0, buf, dir, size, mod); break; 137 case 3: VG_(transfer) (&s390x->guest_r1, buf, dir, size, mod); break; 138 case 4: VG_(transfer) (&s390x->guest_r2, buf, dir, size, mod); break; 139 case 5: VG_(transfer) (&s390x->guest_r3, buf, dir, size, mod); break; 140 case 6: VG_(transfer) (&s390x->guest_r4, buf, dir, size, mod); break; 141 case 7: VG_(transfer) (&s390x->guest_r5, buf, dir, size, mod); break; 142 case 8: VG_(transfer) (&s390x->guest_r6, buf, dir, size, mod); break; 143 case 9: VG_(transfer) (&s390x->guest_r7, buf, dir, size, mod); break [all...] |
/frameworks/base/docs/html/sdk/api_diff/10/changes/ |
alldiffs_index_additions.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 52 <br><font size="+2">A</font> 53 <a href="#B"><font size="-2">B</font></a> 54 <a href="#C"><font size="-2">C</font></a> 55 <a href="#D"><font size="-2">D</font></a> 56 <a href="#E"><font size="-2">E</font></a> 57 <a href="#G"><font size="-2">G</font></a> 58 <a href="#I"><font size="-2">I</font></a> 59 <a href="#L"><font size="-2">L</font></a> 60 <a href="#M"><font size="-2">M</font></a> [all...] |
/frameworks/base/docs/html/sdk/api_diff/17/changes/ |
classes_index_additions.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#C"><font size="-2">C</font></a> 53 <a href="#E"><font size="-2">E</font></a> 54 <a href="#J"><font size="-2">J</font></a> 55 <a href="#L"><font size="-2">L</font></a> 56 <a href="#N"><font size="-2">N</font></a> 57 <a href="#P"><font size="-2">P</font></a> 58 <a href="#S"><font size="-2">S</font></a> 59 <a href="#T"><font size="-2">T</font></a> [all...] |
classes_index_changes.html | 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;"> 51 <br><font size="+2">A</font> 52 <a href="#B"><font size="-2">B</font></a> 53 <a href="#C"><font size="-2">C</font></a> 54 <a href="#D"><font size="-2">D</font></a> 55 <a href="#F"><font size="-2">F</font></a> 56 <a href="#G"><font size="-2">G</font></a> 57 <a href="#I"><font size="-2">I</font></a> 58 <a href="#L"><font size="-2">L</font></a> 59 <a href="#M"><font size="-2">M</font></a> [all...] |
/external/chromium_org/base/allocator/ |
generic_allocators.cc | 13 inline void* generic_cpp_alloc(size_t size, bool nothrow) { 16 ptr = malloc(size); 27 void* __cdecl operator new(size_t size) { 28 return generic_cpp_alloc(size, false); 35 void* operator new[](size_t size) { 36 return generic_cpp_alloc(size, false); 43 void* operator new(size_t size, const std::nothrow_t& nt) __THROW { 44 return generic_cpp_alloc(size, true); 47 void* operator new[](size_t size, const std::nothrow_t& nt) __THROW { 48 return generic_cpp_alloc(size, true) 68 const size_t size = n * elem_size; variable 95 const size_t size = n * elem_size; local [all...] |
/external/clang/test/Sema/ |
warn-strncat-size.c | 1 // RUN: %clang_cc1 -Wstrncat-size -verify -fsyntax-only %s 2 // RUN: %clang_cc1 -DUSE_BUILTINS -Wstrncat-size -verify -fsyntax-only %s 3 // RUN: %clang_cc1 -fsyntax-only -Wstrncat-size -fixit -x c %s 4 // RUN: %clang_cc1 -DUSE_BUILTINS -fsyntax-only -Wstrncat-size -fixit -x c %s 33 strncat(dest, src, sizeof(src)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 35 strncat(dest, src, sizeof(src) - 1); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 37 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 39 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the a (…) [all...] |
/external/lzma/CPP/7zip/Archive/Common/ |
MultiStream.cpp | 7 STDMETHODIMP CMultiStream::Read(void *data, UInt32 size, UInt32 *processedSize)
11 if (size == 0)
17 int left = 0, mid = _streamIndex, right = Streams.Size();
23 else if (_pos >= m.GlobalOffset + m.Size)
41 UInt64 rem = s.Size - localPos;
42 if (size > rem)
43 size = (UInt32)rem;
44 HRESULT result = s.Stream->Read(data, size, &size);
45 _pos += size;
[all...] |