Home
last modified time | relevance | path

Searched refs:size (Results 5401 - 5425 of 51527) sorted by relevance

1...<<211212213214215216217218219220>>...2062

/third_party/libuv/src/
H A Dinet.c29 static int inet_ntop4(const unsigned char *src, char *dst, size_t size);
30 static int inet_ntop6(const unsigned char *src, char *dst, size_t size);
35 int uv_inet_ntop(int af, const void* src, char* dst, size_t size) { in uv_inet_ntop() argument
38 return (inet_ntop4(src, dst, size)); in uv_inet_ntop()
40 return (inet_ntop6(src, dst, size)); in uv_inet_ntop()
48 static int inet_ntop4(const unsigned char *src, char *dst, size_t size) { in inet_ntop4() argument
54 if (l <= 0 || (size_t) l >= size) { in inet_ntop4()
57 uv__strscpy(dst, tmp, size); in inet_ntop4()
62 static int inet_ntop6(const unsigned char *src, char *dst, size_t size) { in inet_ntop6() argument
65 * to contain a value of the specified size in inet_ntop6()
[all...]
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerCorpus.h49 size_t size() const { return Inputs.size(); } in size() function in fuzzer::InputCorpus
53 Res += II->U.size(); in SizeInBytes()
68 Printf("ADD_TO_CORPUS %zd NF %zd\n", Inputs.size(), NumFeatures); in AddToCorpus()
69 ComputeSHA1(U.data(), U.size(), Hash); in AddToCorpus()
94 assert(Idx < Inputs.size()); in ChooseUnitIdxToMutate()
99 for (size_t i = 0; i < Inputs.size(); i++) {
102 Sha1ToString(II.Sha1).c_str(), II.U.size(),
113 for (size_t i = 0; i < Inputs.size(); i++)
143 SmallestElementPerFeature[Idx] = Inputs.size();
[all...]
/third_party/mesa3d/src/intel/dev/
H A Dintel_dev_info.c54 if (devinfo->mem.sram.mappable.size > 0 || in print_regions_info()
55 devinfo->mem.sram.unmappable.size > 0) { in print_regions_info()
62 devinfo->mem.sram.mappable.size); in print_regions_info()
65 if (devinfo->mem.sram.unmappable.size > 0) { in print_regions_info()
67 devinfo->mem.sram.unmappable.size); in print_regions_info()
73 if (devinfo->mem.vram.mappable.size > 0 || in print_regions_info()
74 devinfo->mem.vram.unmappable.size > 0) { in print_regions_info()
81 devinfo->mem.vram.mappable.size); in print_regions_info()
84 if (devinfo->mem.vram.unmappable.size > 0) { in print_regions_info()
86 devinfo->mem.vram.unmappable.size); in print_regions_info()
[all...]
/third_party/ltp/testcases/kernel/mem/hugetlb/hugemmap/
H A Dhugemmap05.c63 static long size = NR_HPAGES, length = (NR_HPAGES + NR_HPAGES/2) * 2; variable
94 length / 2 - size)) in test_overcommit()
107 "HugePages_Surp", length / 2 - size)) in test_overcommit()
129 length / 2 - size)) in test_overcommit()
142 "HugePages_Surp", length / 2 - size)) in test_overcommit()
200 size = atoi(opt_alloc); in setup()
201 length = (size + size * 0.5) * 2; in setup()
214 SAFE_FILE_PRINTF(path, "%ld", size); in setup()
216 if (hpages != size) in setup()
[all...]
/third_party/mesa3d/src/glx/
H A Dindirect_vertex_program.c65 get_parameter(unsigned opcode, unsigned size, GLenum target, GLuint index, in get_parameter() argument
81 (void) __glXReadReply(dpy, size, params, GL_FALSE); in get_parameter()
206 if (reply.size != 0) { in __indirect_glGetVertexAttribiv()
214 if (reply.size == 1) { in __indirect_glGetVertexAttribiv()
218 _XRead(dpy, (void *) params, 4 * reply.size); in __indirect_glGetVertexAttribiv()
240 if (reply.size != 0) { in __indirect_glGetVertexAttribfv()
248 if (reply.size == 1) { in __indirect_glGetVertexAttribfv()
252 _XRead(dpy, (void *) params, 4 * reply.size); in __indirect_glGetVertexAttribfv()
274 if (reply.size != 0) { in __indirect_glGetVertexAttribdv()
282 if (reply.size in __indirect_glGetVertexAttribdv()
[all...]
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dx_int64.c24 * We abuse the ASN1_ITEM fields |size| as a flags field
60 if ((it->size & INTxx_FLAG_ZERO_DEFAULT) == INTxx_FLAG_ZERO_DEFAULT in uint64_i2c()
63 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED in uint64_i2c()
96 if ((it->size & INTxx_FLAG_SIGNED) == 0 && neg) { in uint64_c2i()
100 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED in uint64_c2i()
117 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED) in uint64_print()
155 if ((it->size & INTxx_FLAG_ZERO_DEFAULT) == INTxx_FLAG_ZERO_DEFAULT in uint32_i2c()
158 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED in uint32_i2c()
199 if ((it->size & INTxx_FLAG_SIGNED) == 0 && neg) { in uint32_c2i()
210 if (((it->size in uint32_c2i()
[all...]
/third_party/node/deps/uv/src/
H A Dinet.c34 static int inet_ntop4(const unsigned char *src, char *dst, size_t size);
35 static int inet_ntop6(const unsigned char *src, char *dst, size_t size);
40 int uv_inet_ntop(int af, const void* src, char* dst, size_t size) { in uv_inet_ntop() argument
43 return (inet_ntop4(src, dst, size)); in uv_inet_ntop()
45 return (inet_ntop6(src, dst, size)); in uv_inet_ntop()
53 static int inet_ntop4(const unsigned char *src, char *dst, size_t size) { in inet_ntop4() argument
59 if (l <= 0 || (size_t) l >= size) { in inet_ntop4()
62 uv__strscpy(dst, tmp, size); in inet_ntop4()
67 static int inet_ntop6(const unsigned char *src, char *dst, size_t size) { in inet_ntop6() argument
70 * to contain a value of the specified size in inet_ntop6()
[all...]
/third_party/openssl/crypto/asn1/
H A Dx_int64.c24 * We abuse the ASN1_ITEM fields |size| as a flags field
60 if ((it->size & INTxx_FLAG_ZERO_DEFAULT) == INTxx_FLAG_ZERO_DEFAULT in uint64_i2c()
63 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED in uint64_i2c()
96 if ((it->size & INTxx_FLAG_SIGNED) == 0 && neg) { in uint64_c2i()
100 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED in uint64_c2i()
117 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED) in uint64_print()
155 if ((it->size & INTxx_FLAG_ZERO_DEFAULT) == INTxx_FLAG_ZERO_DEFAULT in uint32_i2c()
158 if ((it->size & INTxx_FLAG_SIGNED) == INTxx_FLAG_SIGNED in uint32_i2c()
199 if ((it->size & INTxx_FLAG_SIGNED) == 0 && neg) { in uint32_c2i()
210 if (((it->size in uint32_c2i()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h60 size_t getNumLists() const { return Lists.size(); } in getNumLists()
81 size_t LI = Lists.size(); in startList()
82 Lists.emplace_back(CU, Entries.size()); in startList()
99 Entries.push_back({BeginSym, EndSym, DWARFBytes.size(), Comments.size()}); in startEntry()
139 if (LI + 1 == Lists.size()) in getNumEntries()
140 return Entries.size() - Lists[LI].EntryOffset; in getNumEntries()
144 if (EI + 1 == Entries.size()) in getNumBytes()
145 return DWARFBytes.size() - Entries[EI].ByteOffset; in getNumBytes()
149 if (EI + 1 == Entries.size()) in getNumComments()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DMemoryObjectVk.cpp111 GLuint64 size, in importFd()
120 return importOpaqueFd(contextVk, size, fd); in importFd()
129 GLuint64 size, in importZirconHandle()
138 return importZirconVmo(contextVk, size, handle); in importZirconHandle()
146 angle::Result MemoryObjectVk::importOpaqueFd(ContextVk *contextVk, GLuint64 size, GLint fd) in importOpaqueFd() argument
153 mSize = size; in importOpaqueFd()
157 angle::Result MemoryObjectVk::importZirconVmo(ContextVk *contextVk, GLuint64 size, GLuint handle) in importZirconVmo() argument
164 mSize = size; in importZirconVmo()
172 const gl::Extents &size, in createImage()
198 gl_vk::GetExtentsAndLayerCount(type, size, in createImage()
110 importFd(gl::Context *context, GLuint64 size, gl::HandleType handleType, GLint fd) importFd() argument
128 importZirconHandle(gl::Context *context, GLuint64 size, gl::HandleType handleType, GLuint handle) importZirconHandle() argument
168 createImage(ContextVk *contextVk, gl::TextureType type, size_t levels, GLenum internalFormat, const gl::Extents &size, GLuint64 offset, vk::ImageHelper *image, GLbitfield createFlags, GLbitfield usageFlags, const void *imageCreateInfoPNext) createImage() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkDescriptorPool.cpp47 size_t size = pCreateInfo->maxSets * sw::align(sizeof(DescriptorSetHeader), 16); in ComputeRequiredAllocationSize() local
51 size += pCreateInfo->pPoolSizes[i].descriptorCount * in ComputeRequiredAllocationSize()
55 return size; in ComputeRequiredAllocationSize()
79 uint8_t *DescriptorPool::findAvailableMemory(size_t size) in findAvailableMemory() argument
89 ptrdiff_t nextItemStart = itemStart + itLast->size; in findAvailableMemory()
91 if(freeSpace >= size) in findAvailableMemory()
99 if(freeSpace >= size) in findAvailableMemory()
110 uint8_t *freeSpaceStart = it->set + it->size; in findAvailableMemory()
112 if(freeSpace >= size) in findAvailableMemory()
208 totalFreeSize += poolSize - ((itLast->set - pool) + itLast->size); in computeTotalFreeSize()
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/
H A DIndexSubTableFormat1.java59 Offset.indexSubTable1_offsetArray.offset + loca * FontData.DataSize.ULONG.size()); in loca()
84 * FontData.DataSize.ULONG.size(); in dataLength()
101 return this.getOffsetArray().size() - 1; in numGlyphs()
141 Offset.indexSubTable1_offsetArray.offset + i * FontData.DataSize.ULONG.size())); in initialize()
212 return Offset.indexSubHeaderLength.offset + this.offsetArray.size() in subDataSizeToSerialize()
213 * FontData.DataSize.ULONG.size(); in subDataSizeToSerialize()
226 int size = super.serializeIndexSubHeader(newData); in subSerialize()
228 size += this.internalReadData().slice(Offset.indexSubTable1_offsetArray.offset).copyTo( in subSerialize()
232 size += newData.writeULong(size, loc in subSerialize()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPUCommandEncoder.cpp64 interop::GPUSize64 size) { in copyBufferToBuffer()
74 enc_.CopyBufferToBuffer(src, sourceOffset, dst, destinationOffset, size); in copyBufferToBuffer()
85 wgpu::Extent3D size{}; in copyBufferToTexture()
88 !conv(size, copySize)) { in copyBufferToTexture()
92 enc_.CopyBufferToTexture(&src, &dst, &size); in copyBufferToTexture()
103 wgpu::Extent3D size{}; in copyTextureToBuffer()
106 !conv(size, copySize)) { in copyTextureToBuffer()
110 enc_.CopyTextureToBuffer(&src, &dst, &size); in copyTextureToBuffer()
121 wgpu::Extent3D size{}; in copyTextureToTexture()
124 !conv(size, copySiz in copyTextureToTexture()
59 copyBufferToBuffer(Napi::Env env, interop::Interface<interop::GPUBuffer> source, interop::GPUSize64 sourceOffset, interop::Interface<interop::GPUBuffer> destination, interop::GPUSize64 destinationOffset, interop::GPUSize64 size) copyBufferToBuffer() argument
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/truetype/
H A Dloca_table.cc157 return GetLocaList()->size(); in NumLocas()
180 return loca_.size() * DataSize::kULONG; in SubDataSizeToSerialize()
182 return loca_.size() * DataSize::kUSHORT; in SubDataSizeToSerialize()
190 int32_t size = 0; in SubSerialize() local
194 size += new_data->WriteULong(size, *l); in SubSerialize()
196 size += new_data->WriteUShort(size, *l / 2); in SubSerialize()
199 num_glyphs_ = loca_.size() - 1; in SubSerialize()
200 return size; in SubSerialize()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/
H A Dwebtreemap.js115 var size = node.data['$area'];
116 if (size < rmin)
117 rmin = size;
118 if (size > rmax)
119 rmax = size;
120 rsum += size;
129 rsum -= size; // Undo size addition from just above.
187 var size = child.data['$area'];
188 var frac = size / rsu
[all...]
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dbundle_util.cpp54 static void *CJsonBmsMalloc(size_t size) in CJsonBmsMalloc() argument
56 return OhosMalloc(MEM_TYPE_CJSON_LSRAM, size); in CJsonBmsMalloc()
250 HILOG_ERROR(HILOG_MODULE_AAFWK, "[BMS] After get folder size, list is still not empty"); in GetFileFolderSize()
363 int32_t size = strlen(str[i]); in Strscat() local
364 if (memcpy_s(pos, strSize + 1 - count, str[i], size) != EOK) { in Strscat()
368 count += size; in Strscat()
369 pos += size; in Strscat()
378 int32_t size = 0; in GetJsonStream() local
387 if (stat(path, &fileInfo) != 0 || (size = fileInfo.st_size) <= 0) { in GetJsonStream()
398 if (size > MAX_JSON_SIZ in GetJsonStream()
658 cJSON *size = cJSON_CreateNumber(0); ObtainUidAndGidJson() local
676 AddUidAndGidInfo(const InstallRecord &installRecord, cJSON *size, cJSON *uids) AddUidAndGidInfo() argument
710 cJSON *size = cJSON_GetObjectItemCaseSensitive(object, PROFILE_KEY_UID_SIZE); ConvertUidAndGidToJson() local
739 DeleteInnerUidInfoFromUidArray(const char *bundleName, cJSON *size, cJSON *uids) DeleteInnerUidInfoFromUidArray() argument
771 cJSON *size = cJSON_GetObjectItemCaseSensitive(object, PROFILE_KEY_UID_SIZE); DeleteUidInfoFromJson() local
[all...]
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dentity_collection.cpp46 for (size_t i = 0; i < listeners_.size(); ++i) { in RemoveListener()
101 return entities_.size(); in GetEntityCount()
106 BASE_ASSERT(collectionIndex < entities_.size()); in GetEntity()
107 if (collectionIndex >= entities_.size()) { in GetEntity()
182 entities_.reserve(entities_.size() + entities.size()); in AddEntities()
196 for (size_t i = 0; i < entities_.size(); ++i) { in RemoveEntity()
301 return collections_.size(); in GetSubCollectionCount()
306 if (index < 0 || index >= collections_.size()) { in GetSubCollection()
314 if (index < 0 || index >= collections_.size()) { in GetSubCollection()
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/common/
H A Dvalue_proxy.cpp51 proxy.value_.reserve(values.size()); in Convert()
61 proxy.value_.reserve(values.size()); in Convert()
71 proxy.value_.reserve(values.size()); in Convert()
81 proxy.value_.reserve(values.size()); in Convert()
127 proxy.value_.reserve(buckets.size()); in Convert()
137 proxy.value_.reserve(buckets.size()); in Convert()
147 proxy.value_.reserve(buckets.size()); in Convert()
157 proxy.value_.reserve(buckets.size()); in Convert()
195 .size = std::move(asset.size), in Asset()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/selftests/
H A Di915_vma.c47 if (vma->size != obj->base.size) { in assert_vma()
48 pr_err("VMA created with wrong size, found %llu, expected %zu\n", in assert_vma()
49 vma->size, obj->base.size); in assert_vma()
218 u64 size; member
233 if (i915_vma_misplaced(vma, mode->size, 0, mode->flags)) in assert_pin_valid()
259 #define VALID(sz, fl) { .size = (sz), .flags = (fl), .assert = assert_pin_valid, .string = #sz ", " #fl ", (valid) " } in igt_vma_pin1()
260 #define __INVALID(sz, fl, check, eval) { .size = (sz), .flags = (fl), .assert = (check), .string = #sz ", " #fl ", (invalid " #eval ")" } in igt_vma_pin1()
297 * variable start, end and size in igt_vma_pin1()
621 assert_partial(struct drm_i915_gem_object *obj, struct i915_vma *vma, unsigned long offset, unsigned long size) assert_partial() argument
651 assert_pin(struct i915_vma *vma, struct i915_ggtt_view *view, u64 size, const char *name) assert_pin() argument
[all...]
/kernel/linux/linux-5.10/drivers/usb/core/
H A Dconfig.c27 static int find_next_descriptor(unsigned char *buffer, int size, in find_next_descriptor() argument
35 while (size > 0) { in find_next_descriptor()
40 size -= h->bLength; in find_next_descriptor()
53 unsigned char *buffer, int size) in usb_parse_ssp_isoc_endpoint_companion()
63 size < USB_DT_SSP_ISOC_EP_COMP_SIZE) { in usb_parse_ssp_isoc_endpoint_companion()
74 unsigned char *buffer, int size) in usb_parse_ss_endpoint_companion()
85 size < USB_DT_SS_EP_COMP_SIZE) { in usb_parse_ss_endpoint_companion()
107 size -= desc->bLength; in usb_parse_ss_endpoint_companion()
176 ep, buffer, size); in usb_parse_ss_endpoint_companion()
257 unsigned char *buffer, int size) in usb_parse_endpoint()
51 usb_parse_ssp_isoc_endpoint_companion(struct device *ddev, int cfgno, int inum, int asnum, struct usb_host_endpoint *ep, unsigned char *buffer, int size) usb_parse_ssp_isoc_endpoint_companion() argument
72 usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, int inum, int asnum, struct usb_host_endpoint *ep, unsigned char *buffer, int size) usb_parse_ss_endpoint_companion() argument
254 usb_parse_endpoint(struct device *ddev, int cfgno, struct usb_host_config *config, int inum, int asnum, struct usb_host_interface *ifp, int num_ep, unsigned char *buffer, int size) usb_parse_endpoint() argument
510 usb_parse_interface(struct device *ddev, int cfgno, struct usb_host_config *config, unsigned char *buffer, int size, u8 inums[], u8 nalts[]) usb_parse_interface() argument
617 usb_parse_configuration(struct usb_device *dev, int cfgidx, struct usb_host_config *config, unsigned char *buffer, int size) usb_parse_configuration() argument
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/
H A Dacornfb.c318 u_int font_line_len, sam_size, min_size, size, nr_y; in acornfb_adjust_timing() local
345 * If minimum screen size is greater than that we have in acornfb_adjust_timing()
354 for (size = info->fix.smem_len; in acornfb_adjust_timing()
355 nr_y = size / font_line_len, min_size <= size; in acornfb_adjust_timing()
356 size -= sam_size) { in acornfb_adjust_timing()
357 if (nr_y * font_line_len == size) in acornfb_adjust_timing()
363 if (min_size > size) { in acornfb_adjust_timing()
367 size = info->fix.smem_len; in acornfb_adjust_timing()
368 var->yres_virtual = size / (font_line_le in acornfb_adjust_timing()
557 unsigned long size = info->fix.smem_len - VDMA_XFERSIZE; acornfb_set_par() local
564 unsigned long start, size; acornfb_set_par() local
851 unsigned int size; acornfb_parse_dram() local
960 unsigned long size; acornfb_probe() local
[all...]
/kernel/linux/linux-5.10/drivers/of/
H A Daddress.c20 /* Max address size we deal with */
27 const __be32 *addrp, u64 size, unsigned int flags,
198 const __be32 *of_get_pci_address(struct device_node *dev, int bar_no, u64 *size, in of_get_pci_address() argument
231 if (size) in of_get_pci_address()
232 *size = of_read_number(prop + na, ns); in of_get_pci_address()
246 u64 size; in of_pci_address_to_resource() local
249 addrp = of_get_pci_address(dev, bar, &size, &flags); in of_pci_address_to_resource()
252 return __of_address_to_resource(dev, addrp, size, flags, NULL, r); in of_pci_address_to_resource()
282 range->size); in of_pci_range_to_resource()
300 res->end = res->start + range->size in of_pci_range_to_resource()
674 of_get_address(struct device_node *dev, int index, u64 *size, unsigned int *flags) of_get_address() argument
783 u64 bus_addr, cpu_addr, size; of_pci_range_parser_one() local
809 of_translate_ioport(struct device_node *dev, const __be32 *in_addr, u64 size) of_translate_ioport() argument
833 __of_address_to_resource(struct device_node *dev, const __be32 *addrp, u64 size, unsigned int flags, const char *name, struct resource *r) __of_address_to_resource() argument
870 u64 size; of_address_to_resource() local
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/
H A Dacornfb.c318 u_int font_line_len, sam_size, min_size, size, nr_y; in acornfb_adjust_timing() local
345 * If minimum screen size is greater than that we have in acornfb_adjust_timing()
354 for (size = info->fix.smem_len; in acornfb_adjust_timing()
355 nr_y = size / font_line_len, min_size <= size; in acornfb_adjust_timing()
356 size -= sam_size) { in acornfb_adjust_timing()
357 if (nr_y * font_line_len == size) in acornfb_adjust_timing()
363 if (min_size > size) { in acornfb_adjust_timing()
367 size = info->fix.smem_len; in acornfb_adjust_timing()
368 var->yres_virtual = size / (font_line_le in acornfb_adjust_timing()
557 unsigned long size = info->fix.smem_len - VDMA_XFERSIZE; acornfb_set_par() local
564 unsigned long start, size; acornfb_set_par() local
849 unsigned int size; acornfb_parse_dram() local
924 unsigned long size; acornfb_probe() local
[all...]
/kernel/linux/linux-6.6/drivers/usb/core/
H A Dconfig.c27 static int find_next_descriptor(unsigned char *buffer, int size, in find_next_descriptor() argument
35 while (size > 0) { in find_next_descriptor()
40 size -= h->bLength; in find_next_descriptor()
53 unsigned char *buffer, int size) in usb_parse_ssp_isoc_endpoint_companion()
63 size < USB_DT_SSP_ISOC_EP_COMP_SIZE) { in usb_parse_ssp_isoc_endpoint_companion()
74 unsigned char *buffer, int size) in usb_parse_ss_endpoint_companion()
85 size < USB_DT_SS_EP_COMP_SIZE) { in usb_parse_ss_endpoint_companion()
107 size -= desc->bLength; in usb_parse_ss_endpoint_companion()
176 ep, buffer, size); in usb_parse_ss_endpoint_companion()
257 unsigned char *buffer, int size) in usb_parse_endpoint()
51 usb_parse_ssp_isoc_endpoint_companion(struct device *ddev, int cfgno, int inum, int asnum, struct usb_host_endpoint *ep, unsigned char *buffer, int size) usb_parse_ssp_isoc_endpoint_companion() argument
72 usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, int inum, int asnum, struct usb_host_endpoint *ep, unsigned char *buffer, int size) usb_parse_ss_endpoint_companion() argument
254 usb_parse_endpoint(struct device *ddev, int cfgno, struct usb_host_config *config, int inum, int asnum, struct usb_host_interface *ifp, int num_ep, unsigned char *buffer, int size) usb_parse_endpoint() argument
498 usb_parse_interface(struct device *ddev, int cfgno, struct usb_host_config *config, unsigned char *buffer, int size, u8 inums[], u8 nalts[]) usb_parse_interface() argument
605 usb_parse_configuration(struct usb_device *dev, int cfgidx, struct usb_host_config *config, unsigned char *buffer, int size) usb_parse_configuration() argument
[all...]
/third_party/elfio/tests/
H A DELFIOTest1.cpp223 for ( int i = 0; i < file1.sections.size(); ++i ) {
283 for ( int i = 0; i < file1.segments.size(); ++i ) {
313 file1.get_segment_entry_size() * (Elf64_Off)file1.segments.size();
404 Elf_Half num = e.sections.size();
408 EXPECT_EQ( num + 1, e.sections.size() );
463 ELFIO::Elf_Xword size; in TEST() local
474 EXPECT_EQ( true, symbols.get_symbol( 0x08048478, name, size, bind, type, in TEST()
478 EXPECT_EQ( 4, size ); in TEST()
486 ELFIO::Elf_Xword size; in TEST() local
497 EXPECT_EQ( true, symbols.get_symbol( 0x00400498, name, size, bin in TEST()
584 ELFIO::Elf_Xword size; TEST() local
613 ELFIO::Elf_Xword size = 0; TEST() local
725 ELFIO::Elf_Xword size = 0; TEST() local
[all...]

Completed in 22 milliseconds

1...<<211212213214215216217218219220>>...2062