HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 2351 - 2375 of 11184) sorted by null

<<919293949596979899100>>

  /external/curl/lib/
curl_ntlm_wb.c 279 ssize_t size; local
282 size = sread(conn->ntlm_auth_hlpr_socket, buf + len_out, NTLM_BUFSIZE);
283 if(size == -1) {
288 else if(size == 0)
291 len_out += size;
  /external/curl/src/
tool_urlglob.h 39 int size; member in struct:__anon8644::__anon8645::__anon8646
63 size_t size; member in struct:__anon8649
  /external/curl/tests/server/
fake_ntlm.c 119 size_t size = 0; local
196 error = getpart(&type1_input, &size, "ntlm_auth_type1", "input", stream);
198 if(error || size == 0) {
213 size = 0;
214 error = getpart(&type3_input, &size, "ntlm_auth_type3", "input", stream);
216 if(error || size == 0) {
233 size = 0;
234 error = getpart(&type1_output, &size, "ntlm_auth_type1", "output",
237 if(error || size == 0) {
255 size = 0
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ComponentDescriptor.java 98 kinds.size() <= 1, "%s cannot be annotated with more than one of %s", element, kinds);
418 if (parameterTypes.size() == 1
  /external/deqp/execserver/
xsProtocol.cpp 60 XS_CHECK_MSG(m_pos + sizeof(T) <= m_size, "Invalid payload size");
69 // \todo [2011-09-30 pyry] We should really send a size parameter instead.
82 XS_FAIL("Invalid payload size");
97 // Place for size.
111 DE_ASSERT(m_buf.size() >= MESSAGE_HEADER_SIZE);
113 // Write actual size.
114 int size = hostToNetwork((int)m_buf.size()); local
115 deMemcpy(&m_buf[0], &size, sizeof(int));
122 size_t curPos = m_buf.size();
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferViewCreateTests.cpp 99 const VkDeviceSize size = 3 * 5 * 7 * 64; local
108 size, // VkDeviceSize size;
130 if (size > memReqs.size)
133 errorMsg << "Requied memory size (" << memReqs.size << " bytes) smaller than the buffer's size (" << size << " bytes)!";
142 memReqs.size, // VkDeviceSize allocationSiz
    [all...]
  /external/deqp/framework/delibs/decpp/
deAppendList.hpp 60 size_t size (void) const { return m_numElements; } function in class:de::AppendList
74 Block (size_t blockNdx_, size_t size)
76 , elements (reinterpret_cast<ElementType*>(deAlignedMalloc(sizeof(ElementType)*size,
  /external/deqp/framework/delibs/deutil/
deFile.c 161 deInt64 size = 0; local
167 size = lseek(file->fd, 0, SEEK_END);
169 if (size < 0)
174 return size;
  /external/deqp/framework/egl/
egluCallLogWrapper.cpp 55 deUint32 size; member in class:eglu::PointerFmt
57 PointerFmt (const T* arr_, deUint32 size_) : arr(arr_), size(size_) {}
66 for (deUint32 ndx = 0; ndx < fmt.size; ndx++)
80 inline PointerFmt<T> getPointerStr (const T* arr, deUint32 size)
82 return PointerFmt<T>(arr, size);
  /external/deqp/framework/platform/win32/
tcuWin32GLES3Platform.cpp 112 const IVec2 size = m_window.getSize(); local
114 m_renderTarget = tcu::RenderTarget(size.x(), size.y(),
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchHandlerList.java 34 * @param size {@code >= 0;} the size of the list
36 public CatchHandlerList(int size) {
37 super(size);
45 * @param n {@code >= 0, < size();} which index
68 int size = size(); local
74 for (int i = 0; i < size; i++) {
83 if ((i == (size - 1)) && catchesAll()) {
104 int size = size() local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ParameterAnnotationStruct.java 66 int size = annotationsList.size(); local
68 ArrayList<AnnotationSetRefItem>(size);
70 for (int i = 0; i < size; i++) {
Statistics.java 73 if (dataMap.size() == 0) {
118 /** {@code >= 0;} total size of instances in bytes */
121 /** {@code >= 0;} largest size of any individual item */
124 /** {@code >= 0;} smallest size of any individual item */
134 int size = item.writeSize(); local
138 this.totalSize = size;
139 this.largestSize = size;
140 this.smallestSize = size;
149 int size = item.writeSize(); local
152 totalSize += size;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
Annotations.java 155 * @return {@code >= 0;} the size
157 public int size() { method in class:Annotations
158 return annotations.size();
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 36 /** {@code >= 0, <= bytes.length}; size computed as
38 private final int size; field in class:ByteArray
67 this.size = end - start;
80 * Gets the size of the array, in bytes.
82 * @return {@code >= 0;} the size
84 public int size() { method in class:ByteArray
85 return size;
92 * @param end {@code >= start, <= size();} end index of
122 * @param off {@code >= 0, < size();} offset to fetch
133 * @param off {@code >= 0, < (size() - 1);} offset to fetc
    [all...]
FixedSizeList.java 22 * Simple (mostly) fixed-size list of objects, which may be made immutable.
32 * @param size the size of the list
34 public FixedSizeList(int size) {
35 super(size != 0);
38 arr = new Object[size];
41 throw new IllegalArgumentException("size < 0");
123 public final int size() { method in class:FixedSizeList
172 * @param n {@code >= 0, < size();} which element
196 * @param n {@code >= 0, < size();} which elemen
    [all...]
LabeledList.java 32 public LabeledList(int size) {
33 super(size);
35 labelToIndex = new IntList(size);
44 super(old.size());
47 int sz = old.size();
63 int sz = labelToIndex.size();
93 int origSz = labelToIndex.size();
111 if (label >= labelToIndex.size()) {
128 int sz = size();
157 int szItems = size();
    [all...]
  /external/dng_sdk/source/
dng_iptc.cpp 366 int32 size = stream.Get_uint16 (); local
368 if (size == 1)
dng_memory.h 53 /// Construct memory buffer of size bytes using malloc.
54 /// \param size Number of bytes of memory needed.
57 dng_memory_data (uint32 size);
64 /// \param elementSize Size of each element.
72 /// Clear existing memory buffer and allocate new memory of size bytes.
73 /// \param size Number of bytes of memory needed.
76 void Allocate (uint32 size);
84 /// \param elementSize Size of each element.
306 // This size is padded for TWO reasons! The first is allow alignment
347 /// Getter for available size, in bytes, of memory block
559 const size_t size = SafeSizetMult(n, sizeof (T)); local
    [all...]
  /external/e2fsprogs/e2fsck/
mtrace.h 60 /* Allocate SIZE bytes of memory. */
63 in __ptr_t, making the new block SIZE bytes long. */
65 /* Allocate NMEMB elements of SIZE bytes each, all initialized to 0. */
70 /* Allocate SIZE bytes allocated to ALIGNMENT bytes. */
73 /* Allocate SIZE bytes on a page boundary. */
99 /* The allocator divides the heap into blocks of fixed size; large
102 and all fragments of a block are the same size. When all the
107 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
124 logarithm to the base two of the fragment size. *
134 size_t size; member in union:__anon10016::__anon10017::__anon10018
141 size_t size; \/* Size (in blocks) of a free cluster. *\/ member in struct:__anon10016::__anon10020
    [all...]
  /external/e2fsprogs/lib/ext2fs/
csum.c 36 size_t size = EXT2_DESC_SIZE(fs->super); local
45 size_t save_size = size;
50 if (size > ext4_bg_size)
51 size = ext4_bg_size;
52 memcpy(&swabdesc, desc, size);
65 if (offset < size) {
67 size - offset);
71 * If the size of the bg descriptor is greater than 64
72 * bytes, which is the size of the traditional ext4 bg
178 size_t size = EXT2_DESC_SIZE(fs->super) local
    [all...]
dosio.c 165 ioch->block_size = 1024; /* The smallest ext2fs block size */
332 part->len = pent->size;
375 size_t size; local
382 size = (size_t)((count < 0) ? -count : count * channel->block_size);
396 size < 512 ? 1 : size/512,
412 size_t size; local
420 size = (size_t)channel->block_size;
424 size = (size_t)-count;
426 size = (size_t)(count * channel->block_size)
    [all...]
ext2fsP.h 22 int size; member in struct:ext2_struct_u32_list
40 unsigned long long size; member in struct:ext2_struct_dblist
  /external/e2fsprogs/resize/
extent.c 23 __u64 size; member in struct:ext2_extent_entry
29 __u64 size; member in struct:_ext2_extent
37 errcode_t ext2fs_create_extent_table(ext2_extent *ret_extent, __u64 size)
47 extent->size = size ? size : 50;
53 extent->size, &extent->list);
59 sizeof(struct ext2_extent_entry) * extent->size);
72 extent->size = 0;
87 if (extent->num >= extent->size) {
    [all...]
  /external/e2fsprogs/tests/progs/
test_icount.c 68 ext2_ino_t size = 5; local
78 if (parse_inode(progname, "icount size", argv[0], &size))
83 printf("Creating icount... flags=%d, size=%d\n", flags, (int) size);
85 retval = ext2fs_create_icount(test_fs, flags, (int) size,
238 ext2_ino_t size; local
242 size = ext2fs_get_icount_size(test_icount);
243 printf("Size of icount is: %lu\n", (unsigned long)size);
    [all...]

Completed in 709 milliseconds

<<919293949596979899100>>