/third_party/node/deps/v8/src/base/ |
H A D | bounded-page-allocator.h | 42 size_t size, size_t allocate_page_size, 50 size_t size() const; 70 void* AllocatePages(void* hint, size_t size, size_t alignment, 73 bool ReserveForSharedMemoryMapping(void* address, size_t size) override; 76 bool AllocatePagesAt(Address address, size_t size, Permission access); 78 bool FreePages(void* address, size_t size) override; 80 bool ReleasePages(void* address, size_t size, size_t new_size) override; 82 bool SetPermissions(void* address, size_t size, Permission access) override; 84 bool DiscardSystemPages(void* address, size_t size) override; 86 bool DecommitPages(void* address, size_t size) overrid [all...] |
/third_party/mesa3d/src/gallium/auxiliary/os/ |
H A D | os_process.c | 49 * \param size size of the procname buffer 53 os_get_process_name(char *procname, size_t size) in os_get_process_name() argument 91 assert(size > 0); in os_get_process_name() 94 if (name && procname && size > 0) { in os_get_process_name() 95 strncpy(procname, name, size); in os_get_process_name() 96 procname[size - 1] = '\0'; in os_get_process_name() 109 * \param size size of the cmdline buffer 113 os_get_command_line(char *cmdline, size_t size) in os_get_command_line() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_simulator_validate.h | 41 #define kmalloc(size, arg) malloc(size) 42 #define kcalloc(size, count, arg) calloc(size, count) 44 #define krealloc(ptr, size, args) realloc(ptr, size) 70 copy_from_user(void *dst, void *src, size_t size) in copy_from_user() argument 72 memcpy(dst, src, size); in copy_from_user() 85 size_t size; member 107 drm_gem_cma_create(struct drm_device *dev, size_t size); [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
H A D | FontData.java | 49 private final int size; field in FontData.DataSize 51 private DataSize(int size) { in DataSize() argument 52 this.size = size; in DataSize() 55 public int size() { in size() method in FontData.DataSize 56 return this.size; in size() 108 * Sets limits on the size of the FontData. The FontData is then only 116 if ((offset + length > this.size()) || offset < 0 || length < 0) { in bound() 125 * Sets limits on the size of the FontData. This is an offset bound only so if 130 * size o 176 public int size() { size() method in FontData [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_wire/client/ |
H A D | ClientMemoryTransferService_mock.cpp | 46 size_t size) { in DeserializeDataUpdate() 50 size); in DeserializeDataUpdate() 74 size_t size) { in SizeOfSerializeDataUpdate() 75 return mService->OnWriteHandleSizeOfSerializeDataUpdate(this, offset, size); in SizeOfSerializeDataUpdate() 80 size_t size) { in SerializeDataUpdate() 81 mService->OnWriteHandleSerializeDataUpdate(this, serializePointer, offset, size); in SerializeDataUpdate() 88 size_t size) { in CreateReadHandle() 89 return OnCreateReadHandle(size); in CreateReadHandle() 93 size_t size) { in CreateWriteHandle() 94 return OnCreateWriteHandle(size); in CreateWriteHandle() 42 DeserializeDataUpdate( const void* deserializePointer, size_t deserializeSize, size_t offset, size_t size) DeserializeDataUpdate() argument 73 SizeOfSerializeDataUpdate(size_t offset, size_t size) SizeOfSerializeDataUpdate() argument 78 SerializeDataUpdate(void* serializePointer, size_t offset, size_t size) SerializeDataUpdate() argument 87 CreateReadHandle( size_t size) CreateReadHandle() argument 92 CreateWriteHandle( size_t size) CreateWriteHandle() argument [all...] |
/third_party/skia/third_party/externals/harfbuzz/test/fuzzing/ |
H A D | hb-set-fuzzer.cc | 39 extern "C" int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() argument 41 alloc_state = size; /* see src/failing-alloc.c */ in LLVMFuzzerTestOneInput() 43 if (size < sizeof (instructions_t)) in LLVMFuzzerTestOneInput() 46 if (size > MAX_INPUT_SIZE) in LLVMFuzzerTestOneInput() 54 size -= sizeof (instructions_t); in LLVMFuzzerTestOneInput() 57 size = size / sizeof (uint32_t); in LLVMFuzzerTestOneInput() 59 if (size < instructions.first_set_size) in LLVMFuzzerTestOneInput() 65 size -= instructions.first_set_size; in LLVMFuzzerTestOneInput() 66 hb_set_t *set_b = create_set (values, size); in LLVMFuzzerTestOneInput() [all...] |
H A D | hb-shape-fuzzer.cc | 12 extern "C" int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size) in LLVMFuzzerTestOneInput() argument 14 alloc_state = size; /* see src/failing-alloc.c */ in LLVMFuzzerTestOneInput() 16 hb_blob_t *blob = hb_blob_create ((const char *)data, size, in LLVMFuzzerTestOneInput() 24 if (size) num_coords = data[size - 1]; in LLVMFuzzerTestOneInput() 27 if (size > num_coords + 1) in LLVMFuzzerTestOneInput() 29 coords[i] = ((int) data[size - num_coords + i - 1] - 128) * 10; in LLVMFuzzerTestOneInput() 44 if (size < len) in LLVMFuzzerTestOneInput() 45 len = size; in LLVMFuzzerTestOneInput() 47 memcpy (text32, data + size in LLVMFuzzerTestOneInput() [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_memory.cpp | 34 dng_memory_data::dng_memory_data (uint32 size) in dng_memory_data() argument 40 Allocate (size); in dng_memory_data() 67 void dng_memory_data::Allocate (uint32 size) in Allocate() argument 72 if (size) in Allocate() 75 fBuffer = (char*)malloc (size); in Allocate() 129 uint32 size = LogicalSize (); in Clone() local 131 dng_memory_block * result = allocator.Allocate (size); in Clone() 133 DoCopyBytes (Buffer (), result->Buffer (), size); in Clone() local 218 dng_memory_block * dng_memory_allocator::Allocate (uint32 size) in Allocate() argument 221 dng_memory_block *result = new dng_malloc_block (size); in Allocate() [all...] |
/third_party/mesa3d/src/amd/addrlib/inc/ |
H A D | addrinterface.h | 205 UINT_32 size; ///< Size of this structure in bytes member 208 UINT_32 sizeInBytes; ///< System memory allocation size in bytes. 229 UINT_32 size; ///< Size of this structure in bytes member 253 UINT_32 size; ///< Size of this structure in bytes member 304 UINT_32 fillSizeFields : 1; ///< If clients fill size fields in all input and 366 UINT_32 size; ///< Size of this structure in bytes member 389 UINT_32 size; ///< Size of this structure in bytes member 457 UINT_32 tileSplitBytes; ///< Tile split size, in bytes 548 UINT_32 size; ///< Size of this structure in bytes member 592 UINT_32 size; ///< Siz member 673 UINT_32 size; ///< Size of this structure in bytes global() member 730 UINT_32 size; ///< Size of this structure in bytes global() member 763 UINT_32 size; ///< Size of this structure in bytes global() member 818 UINT_32 size; ///< Size of this structure in bytes global() member 875 UINT_32 size; ///< Size of this structure in bytes global() member 902 UINT_32 size; ///< Size of this structure in bytes global() member 946 UINT_32 size; ///< Size of this structure in bytes global() member 978 UINT_32 size; ///< Size of this structure in bytes global() member 1010 UINT_32 size; ///< Size of this structure in bytes global() member 1039 UINT_32 size; ///< Size of this structure in bytes global() member 1095 UINT_32 size; ///< Size of this structure in bytes global() member 1120 UINT_32 size; ///< Size of this structure in bytes global() member 1162 UINT_32 size; ///< Size of this structure in bytes global() member 1191 UINT_32 size; ///< Size of this structure in bytes global() member 1223 UINT_32 size; ///< Size of this structure in bytes global() member 1250 UINT_32 size; ///< Size of this structure in bytes global() member 1287 UINT_32 size; ///< Size of this structure in bytes global() member 1319 UINT_32 size; ///< Size of this structure in bytes global() member 1365 UINT_32 size; ///< Size of this structure in bytes global() member 1412 UINT_32 size; ///< Size of this structure in bytes global() member 1443 UINT_32 size; ///< Size of this structure in bytes global() member 1484 UINT_32 size; ///< Size of this structure in bytes global() member 1552 UINT_32 size; ///< Size of this structure in bytes global() member 1575 UINT_32 size; ///< Size of this structure in bytes global() member 1607 UINT_32 size; ///< Size of this structure in bytes global() member 1632 UINT_32 size; ///< Size of this structure in bytes global() member 1666 UINT_32 size; ///< Size of this structure in bytes global() member 1694 UINT_32 size; ///< Size of this structure in bytes global() member 1760 UINT_32 size; ///< Size of this structure in bytes global() member 1785 UINT_32 size; ///< Size of this structure in bytes global() member 1818 UINT_32 size; ///< Size of this structure in bytes global() member 1860 UINT_32 size; ///< Size of this structure in bytes global() member 1877 UINT_32 size; ///< Size of this structure in bytes global() member 1917 UINT_32 size; ///< Size of this structure in bytes global() member 1936 UINT_32 size; ///< Size of this structure in bytes global() member 1987 UINT_32 size; ///< Size of this structure in bytes global() member 2012 UINT_32 size; ///< Size of this structure in bytes global() member 2044 UINT_32 size; ///< Size of this structure in bytes global() member 2062 UINT_32 size; ///< Size of this structure in bytes global() member 2093 UINT_32 size; ///< Size of this structure in bytes global() member 2110 UINT_32 size; ///< Size of this structure in bytes global() member 2137 UINT_32 size; ///< Size of this structure in bytes global() member 2170 UINT_32 size; ///< Size of this structure in bytes global() member 2187 UINT_32 size; ///< Size of this structure in bytes global() member 2267 UINT_32 size; ///< Size of this structure in bytes global() member 2291 UINT_32 size; ///< Size of this structure in bytes global() member 2325 UINT_32 size; ///< Size of this structure in bytes global() member 2430 UINT_32 size; ///< Size of this structure in bytes global() member 2489 UINT_32 size; ///< Size of this structure in bytes global() member 2554 UINT_32 size; ///< Size of this structure in bytes global() member 2589 UINT_32 size; ///< Size of this structure in bytes global() member 2622 UINT_32 size; ///< Size of this structure in bytes global() member 2655 UINT_32 size; ///< Size of this structure in bytes global() member 2748 UINT_32 size; ///< Size of this structure in bytes global() member 2773 UINT_32 size; ///< Size of this structure in bytes global() member 2818 UINT_32 size; ///< Size of this structure in bytes global() member 2847 UINT_32 size; ///< Size of this structure in bytes global() member 2877 UINT_32 size; ///< Size of this structure in bytes global() member 2903 UINT_32 size; ///< Size of this structure in bytes global() member 2941 UINT_32 size; ///< Size of this structure in bytes global() member 2980 UINT_32 size; ///< Size of this structure in bytes global() member 3040 UINT_32 size; ///< Size of this structure in bytes global() member 3071 UINT_32 size; ///< Size of this structure in bytes global() member 3102 UINT_32 size; ///< Size of this structure in bytes global() member 3128 UINT_32 size; ///< Size of this structure in bytes global() member 3186 UINT_32 size; ///< Size of this structure in bytes global() member 3209 UINT_32 size; ///< Size of this structure in bytes global() member 3246 UINT_32 size; ///< Size of this structure in bytes global() member 3276 UINT_32 size; ///< Size of this structure in bytes global() member 3307 UINT_32 size; ///< Size of this structure in bytes global() member 3333 UINT_32 size; ///< Size of this structure in bytes global() member 3371 UINT_32 size; ///< Size of this structure in bytes global() member 3400 UINT_32 size; ///< Size of this structure in bytes global() member 3476 UINT_32 size; ///< Size of this structure in bytes global() member 3517 UINT_32 size; ///< Size of this structure in bytes global() member 3549 UINT_32 size; ///< Size of this structure in bytes global() member 3571 UINT_32 size; ///< Size of this structure in bytes global() member 3598 UINT_32 size; ///< Size of this structure in bytes global() member 3617 UINT_32 size; ///< Size of this structure in bytes global() member 3644 UINT_32 size; ///< Size of this structure in bytes global() member 3664 UINT_32 size; ///< Size of this structure in bytes global() member 3691 UINT_32 size; ///< Size of this structure in bytes global() member 3715 UINT_32 size; ///< Size of this structure in bytes global() member 3869 UINT_32 size; ///< Size of this structure in bytes global() member 3905 UINT_32 size; ///< Size of this structure in bytes global() member [all...] |
/drivers/hdf_core/framework/support/platform/src/hdmi/ |
H A D | hdmi_dispatch.c | 76 size_t size; in HdmiCmdAvmuteSet() local 79 if (!HdfSbufReadBuffer(data, (const void **)&enable, &size)) { in HdmiCmdAvmuteSet() 90 size_t size; in HdmiCmdDeepColorSet() local 93 if (!HdfSbufReadBuffer(data, (const void **)&color, &size)) { in HdmiCmdDeepColorSet() 125 size_t size; in HdmiCmdVideoAttrSet() local 128 if (!HdfSbufReadBuffer(data, (const void **)&attr, &size)) { in HdmiCmdVideoAttrSet() 138 size_t size; in HdmiCmdAudioAttrSet() local 141 if (!HdfSbufReadBuffer(data, (const void **)&attr, &size)) { in HdmiCmdAudioAttrSet() 151 size_t size; in HdmiCmdHdrAttrSet() local 154 if (!HdfSbufReadBuffer(data, (const void **)&attr, &size)) { in HdmiCmdHdrAttrSet() 188 size_t size; HdmiCmdInfoFrameSet() local 205 size_t size; HdmiCmdInfoFrameGet() local 231 size_t size; HdmiCmdRegisterHpdCallbackFunc() local [all...] |
/drivers/peripheral/codec/interfaces/include/ |
H A D | codec_omx_ext.h | 125 uint32_t size; /** Size of the structure */ member 135 uint32_t size; /** Size of the structure */ member 145 uint32_t size; /** Size of the structure */ member 155 uint32_t size; /** Size of the structure */ member 168 uint32_t size; /** Size of the structure */ member 180 int size; /**< Parameter value size */ member 187 uint32_t size; /** Size of the structure */ member 196 uint32_t size; /** Size of the structure */ member 205 uint32_t size; /** Siz member 313 uint32_t size; /** Size of the structure */ global() member 327 uint32_t size; /** Size of the structure */ global() member 344 uint32_t size; /** Size of the structure */ global() member 364 uint32_t size; /** Size of the structure */ global() member 381 uint32_t size; /** Size of the structure */ global() member 388 uint32_t size; /** Size of the structure */ global() member 394 uint32_t size; /** Size of the structure */ global() member [all...] |
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/drag/ |
H A D | drag_dragPreviewOption.cpp | 26 float size = 50; in drag_DragPreviewOption_Dispose_001() local 27 ArkUI_NumberValue value[] = {{.f32 = size}}; in drag_DragPreviewOption_Dispose_001() 41 float size = 50; in drag_DragPreviewOption_SetScaleMode_002() local 42 ArkUI_NumberValue value[] = {{.f32 = size}}; in drag_DragPreviewOption_SetScaleMode_002() 58 float size = 50; in drag_DragPreviewOption_SetDefaultShadowEnabled_003() local 59 ArkUI_NumberValue value[] = {{.f32 = size}}; in drag_DragPreviewOption_SetDefaultShadowEnabled_003() 74 float size = 50; in drag_DragPreviewOption_SetDefaultRadiusEnabled_004() local 75 ArkUI_NumberValue value[] = {{.f32 = size}}; in drag_DragPreviewOption_SetDefaultRadiusEnabled_004() 90 float size = 50; in drag_DragPreviewOption_SetNumberBadgeEnabled_005() local 91 ArkUI_NumberValue value[] = {{.f32 = size}}; in drag_DragPreviewOption_SetNumberBadgeEnabled_005() 106 float size = 50; drag_DragPreviewOption_SetBadgeNumber_006() local 122 float size = 50; drag_DragPreviewOption_SetDefaultAnimationBeforeLiftingEnabled_007() local 138 float size = 50; drag_DragPreviewOption_SetNodeDragPreviewOption_008() local [all...] |
/test/xts/acts/security_lite/huks/common/ |
H A D | hks_test_api_performance.c | 48 oriCipherTestSize = cipherText->size; in HksEncryptRun() 54 cipherText->size = oriCipherTestSize; in HksEncryptRun() 71 oriPlainTextSize = plainText->size; in HksDecryptRun() 77 plainText->size = oriPlainTextSize; in HksDecryptRun() 93 oriMacSize = mac->size; in HksMacRun() 99 mac->size = oriMacSize; in HksMacRun() 115 oriDerivedKeySize = derivedKey->size; in HksDeriveKeyRun() 121 derivedKey->size = oriDerivedKeySize; in HksDeriveKeyRun() 154 oriRandomSize = random->size; in HksGenerateRandomRun() 160 random->size in HksGenerateRandomRun() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | mxg.c | 134 unsigned int size; in mxg_read_packet() local 171 size = mxg->buffer_ptr - mxg->soi_ptr; in mxg_read_packet() 172 ret = av_new_packet(pkt, size); in mxg_read_packet() 175 memcpy(pkt->data, mxg->soi_ptr, size); in mxg_read_packet() 189 return pkt->size; in mxg_read_packet() 194 size = AV_RB16(mxg->buffer_ptr); in mxg_read_packet() 195 if (size < 2) in mxg_read_packet() 198 if (mxg->cache_size < size) { in mxg_read_packet() 199 ret = mxg_update_cache(s, size); in mxg_read_packet() 205 mxg->cache_size -= size; in mxg_read_packet() [all...] |
/third_party/curl/tests/unit/ |
H A D | unit1650.c | 59 size_t size; member 75 size_t size; member 158 size_t size = 0; variable 165 buffer, sizeof(buffer), &size); 171 if(size != req[i].size) { 172 fprintf(stderr, "req %zu: Expected size %zu got %zu\n", i, 173 req[i].size, size); 174 fprintf(stderr, "DNS encode made: %s\n", hexdump(buffer, size)); [all...] |
/third_party/backends/lib/ |
H A D | alloca.c | 137 alignment chunk size. The following default should work okay. */ 163 alloca (size) in alloca() 164 unsigned size; in alloca() 204 if (size == 0) 210 register pointer new = malloc (sizeof (header) + size); 239 long shsize:32; /* Current size of stack (all segments). */ 289 long now; /* Current total stack size. */ 303 long pad_size; /* Stack pad size. */ 305 long current_size; /* Current stack segment size. This 349 long *block, size; in i00afunc() local 423 long size, pseg, this_segment, stack; i00afunc() local [all...] |
/third_party/benchmark/src/ |
H A D | statistics.cc | 35 return StatisticsSum(v) * (1.0 / v.size()); in StatisticsMean() 39 if (v.size() < 3) return StatisticsMean(v); in StatisticsMedian() 42 auto center = copy.begin() + v.size() / 2; in StatisticsMedian() 50 if (v.size() % 2 == 1) return *center; in StatisticsMedian() 72 if (v.size() == 1) return 0.0; in StatisticsStdDev() 74 const double avg_squares = SumSquares(v) * (1.0 / v.size()); in StatisticsStdDev() 75 return Sqrt(v.size() / (v.size() - 1.0) * (avg_squares - Sqr(mean))); in StatisticsStdDev() 79 if (v.size() < 2) return 0.0; in StatisticsCV() 95 if (reports.size() in ComputeStats() [all...] |
/third_party/ltp/testcases/kernel/fs/doio/ |
H A D | datapid.c | 306 int size = 1234; local 311 if ((buffer = (char *)malloc(size)) == NULL) { 316 datapidgen(-1, buffer, size, 3); 319 fwrite(buffer, size, 1, stdout); 323 printf("datapidgen(-1, buffer, size, 3)\n"); 325 ret = datapidchk(-1, buffer, size, 3, &errmsg); 327 size, ret, errmsg); 328 ret = datapidchk(-1, &buffer[1], size - 1, 4, &errmsg); 330 size - 1, ret, errmsg); 338 ret = datapidchk(-1, &buffer[1], size 344 datapidgen(getpid(), buffer, size, 5); global() local [all...] |
/third_party/node/lib/internal/webstreams/ |
H A D | util.js | 82 function extractSizeAlgorithm(size) { 83 if (size === undefined) return () => 1; 84 validateFunction(size, 'strategy.size'); 85 return size; 155 size, 158 MathMax(0, controller[kState].queueTotalSize - size); 176 function enqueueValueWithSize(controller, value, size) { 179 size = +size; [all...] |
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_upload_mgr.c | 44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */ 176 /* Return the allocated buffer size or 0 if it failed. */ 182 unsigned size; in u_upload_alloc_buffer() local 190 size = align(MAX2(upload->default_size, min_size), 4096); in u_upload_alloc_buffer() 198 buffer.width0 = size; in u_upload_alloc_buffer() 219 * can be called per upload buffer is "size", because the minimum in u_upload_alloc_buffer() 220 * allocation size is 1, thus u_upload_alloc can only return "size" number in u_upload_alloc_buffer() 232 * so init the buffer_private_refcount to 1 + size - min_size, instead in u_upload_alloc_buffer() 233 * of size t in u_upload_alloc_buffer() 254 u_upload_alloc(struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, unsigned alignment, unsigned *out_offset, struct pipe_resource **outbuf, void **ptr) u_upload_alloc() argument 319 u_upload_data(struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, unsigned alignment, const void *data, unsigned *out_offset, struct pipe_resource **outbuf) u_upload_data() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_batch.h | 45 * effectively limits the maximum statebuffer size to 64kB. 49 /* Our target batch size - flush approximately at this point. */ 224 * Ensure the current command buffer has \param size bytes of space 231 crocus_require_command_space(struct crocus_batch *batch, unsigned size) in crocus_require_command_space() argument 233 const unsigned required_bytes = crocus_batch_bytes_used(batch) + size; in crocus_require_command_space() 237 } else if (used + size >= batch->command.bo->size) { in crocus_require_command_space() 239 MIN2(batch->command.bo->size + batch->command.bo->size / 2, in crocus_require_command_space() 244 assert(crocus_batch_bytes_used(batch) + size < batc in crocus_require_command_space() 267 crocus_batch_emit(struct crocus_batch *batch, const void *data, unsigned size) crocus_batch_emit() argument 303 crocus_record_state_size(struct hash_table_u64 *ht, uint32_t offset_from_base, uint32_t size) crocus_record_state_size() argument 320 crocus_require_statebuffer_space(struct crocus_batch *batch, int size) crocus_require_statebuffer_space() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | memory.cpp | 100 static auto size = [] { in pageSize() local 105 return size; in pageSize() 132 // pagedMalloc() allocates size bytes of uninitialized storage with the 140 size_t size, in pagedMalloc() 145 "alignment (0x%x) must be less than the page size (0x%x)", in pagedMalloc() 147 auto numRequestedPages = (size + pageSize() - 1) / pageSize(); in pagedMalloc() 164 size_t size, 169 "alignment (0x%x) must be less than the page size (0x%x)", 171 auto numRequestedPages = (size + pageSize() - 1) / pageSize(); 180 // alignedMalloc() allocates size byte 139 pagedMalloc(size_t alignment, size_t size, bool guardLow, bool guardHigh) pagedMalloc() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | gas.c | 18 gas_build_req(u8 action, u8 dialog_token, size_t size) in gas_build_req() argument 22 buf = wpabuf_alloc(100 + size); in gas_build_req() 34 struct wpabuf * gas_build_initial_req(u8 dialog_token, size_t size) in gas_build_initial_req() argument 37 size); in gas_build_initial_req() 49 u8 more, u16 comeback_delay, size_t size) in gas_build_resp() 53 buf = wpabuf_alloc(100 + size); in gas_build_resp() 71 size_t size) in gas_build_initial_resp() 74 status_code, 0, 0, comeback_delay, size); in gas_build_initial_resp() 80 u16 comeback_delay, size_t size) in gas_build_comeback_resp() 84 size); in gas_build_comeback_resp() 48 gas_build_resp(u8 action, u8 dialog_token, u16 status_code, u8 frag_id, u8 more, u16 comeback_delay, size_t size) gas_build_resp() argument 70 gas_build_initial_resp(u8 dialog_token, u16 status_code, u16 comeback_delay, size_t size) gas_build_initial_resp() argument 79 gas_build_comeback_resp(u8 dialog_token, u16 status_code, u8 frag_id, u8 more, u16 comeback_delay, size_t size) gas_build_comeback_resp() argument 112 gas_anqp_build_initial_req(u8 dialog_token, size_t size) gas_anqp_build_initial_req() argument 128 gas_anqp_build_initial_resp(u8 dialog_token, u16 status_code, u16 comeback_delay, size_t size) gas_anqp_build_initial_resp() argument 168 gas_anqp_build_comeback_resp(u8 dialog_token, u16 status_code, u8 frag_id, u8 more, u16 comeback_delay, size_t size) gas_anqp_build_comeback_resp() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | gas.c | 18 gas_build_req(u8 action, u8 dialog_token, size_t size) in gas_build_req() argument 22 buf = wpabuf_alloc(100 + size); in gas_build_req() 34 struct wpabuf * gas_build_initial_req(u8 dialog_token, size_t size) in gas_build_initial_req() argument 37 size); in gas_build_initial_req() 49 u8 more, u16 comeback_delay, size_t size) in gas_build_resp() 53 buf = wpabuf_alloc(100 + size); in gas_build_resp() 71 size_t size) in gas_build_initial_resp() 74 status_code, 0, 0, comeback_delay, size); in gas_build_initial_resp() 80 u16 comeback_delay, size_t size) in gas_build_comeback_resp() 84 size); in gas_build_comeback_resp() 48 gas_build_resp(u8 action, u8 dialog_token, u16 status_code, u8 frag_id, u8 more, u16 comeback_delay, size_t size) gas_build_resp() argument 70 gas_build_initial_resp(u8 dialog_token, u16 status_code, u16 comeback_delay, size_t size) gas_build_initial_resp() argument 79 gas_build_comeback_resp(u8 dialog_token, u16 status_code, u8 frag_id, u8 more, u16 comeback_delay, size_t size) gas_build_comeback_resp() argument 112 gas_anqp_build_initial_req(u8 dialog_token, size_t size) gas_anqp_build_initial_req() argument 128 gas_anqp_build_initial_resp(u8 dialog_token, u16 status_code, u16 comeback_delay, size_t size) gas_anqp_build_initial_resp() argument 168 gas_anqp_build_comeback_resp(u8 dialog_token, u16 status_code, u8 frag_id, u8 more, u16 comeback_delay, size_t size) gas_anqp_build_comeback_resp() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | BufferVk.cpp | 27 // the buffer is made in 4-byte chunks. Assume the size of the buffer is 4k+n where n is in [0, 3). 33 // Start with a fairly small buffer size. We can increase this dynamically as we convert more data. 131 // buffer size automatically (which will allocate BufferHelpers with the same size as this in GetPreferredDynamicBufferInitialSize() 150 // A sub data update with size > 50% of buffer size meets the threshold in ShouldAllocateNewMemoryForUpdate() 160 // bubbles. If GPU is currently busy and data copy size is less than certain threshold, we in ShouldUseCPUToCopyData() 254 size_t size) in initializeShadowBuffer() 267 mShadowBuffer.init(size); in initializeShadowBuffer() 271 ANGLE_TRY(mShadowBuffer.allocate(size)); in initializeShadowBuffer() 252 initializeShadowBuffer(ContextVk *contextVk, gl::BufferBinding target, size_t size) initializeShadowBuffer() argument 295 updateShadowBuffer(const uint8_t *data, size_t size, size_t offset) updateShadowBuffer() argument 303 setExternalBufferData(const gl::Context *context, gl::BufferBinding target, GLeglClientBufferEXT clientBuffer, size_t size, VkMemoryPropertyFlags memoryPropertyFlags) setExternalBufferData() argument 347 setDataWithUsageFlags(const gl::Context *context, gl::BufferBinding target, GLeglClientBufferEXT clientBuffer, const void *data, size_t size, gl::BufferUsage usage, GLbitfield flags) setDataWithUsageFlags() argument 397 setData(const gl::Context *context, gl::BufferBinding target, const void *data, size_t size, gl::BufferUsage usage) setData() argument 408 setDataWithMemoryType(const gl::Context *context, gl::BufferBinding target, const void *data, size_t size, VkMemoryPropertyFlags memoryPropertyFlags, bool persistentMapRequired, gl::BufferUsage usage) setDataWithMemoryType() argument 484 setSubData(const gl::Context *context, gl::BufferBinding target, const void *data, size_t size, size_t offset) setSubData() argument 499 copySubData(const gl::Context *context, BufferImpl *source, GLintptr sourceOffset, GLintptr destOffset, GLsizeiptr size) copySubData() argument 523 updateShadowBuffer(static_cast<uint8_t *>(mapPtr), size, destOffset); copySubData() local 558 handleDeviceLocalBufferMap(ContextVk *contextVk, VkDeviceSize offset, VkDeviceSize size, uint8_t **mapPtr) handleDeviceLocalBufferMap() argument 587 handleDeviceLocalBufferUnmap(ContextVk *contextVk, VkDeviceSize offset, VkDeviceSize size) handleDeviceLocalBufferUnmap() argument 832 size_t size = static_cast<size_t>(mState.getMapLength()); unmapImpl() local 862 getSubData(const gl::Context *context, GLintptr offset, GLsizeiptr size, void *outData) getSubData() argument 913 updateBuffer(ContextVk *contextVk, const uint8_t *data, size_t size, size_t offset) updateBuffer() argument 928 directUpdate(ContextVk *contextVk, const uint8_t *data, size_t size, size_t offset) directUpdate() argument 953 stagedUpdate(ContextVk *contextVk, const uint8_t *data, size_t size, size_t offset) stagedUpdate() argument 972 allocMappedStagingBuffer(ContextVk *contextVk, size_t size, vk::DynamicBuffer **stagingBuffer, VkDeviceSize *stagingBufferOffset, uint8_t **mapPtr) allocMappedStagingBuffer() argument 993 flushMappedStagingBuffer(ContextVk *contextVk, vk::DynamicBuffer *stagingBuffer, VkDeviceSize stagingBufferOffset, size_t size, size_t offset) flushMappedStagingBuffer() argument 1098 setDataImpl(ContextVk *contextVk, const uint8_t *data, size_t size, size_t offset, BufferUpdateType updateType) setDataImpl() argument 1181 size_t size = roundUpPow2(sizeInBytes, kBufferSizeGranularity); acquireBufferHelper() local [all...] |