Searched refs:offsetSize (Results 1 - 9 of 9) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_grid_col_ffi.cpp | 77 auto offsetSize = ParserGridContainerSize(offset, 0); in FfiOHOSAceFrameworkGridColCreateWithInt32() local 79 GridColModel::GetInstance()->Create(spanSize, offsetSize, orderSize); in FfiOHOSAceFrameworkGridColCreateWithInt32() 86 auto offsetSize = ParserGridContainerSize(offset, 0); in FfiOHOSAceFrameworkGridColCreateWithOption() local 88 GridColModel::GetInstance()->Create(spanSize, offsetSize, orderSize); in FfiOHOSAceFrameworkGridColCreateWithOption() 105 auto offsetSize = ParserGridContainerSize(offset, 0); in FfiOHOSAceFrameworkGridColSetOffset() local 106 GridColModel::GetInstance()->SetOffset(offsetSize); in FfiOHOSAceFrameworkGridColSetOffset() 111 auto offsetSize = ParserGridContainerSize(offset, 0); in FfiOHOSAceFrameworkGridColSetOffsetWithOption() local 112 GridColModel::GetInstance()->SetOffset(offsetSize); in FfiOHOSAceFrameworkGridColSetOffsetWithOption()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_ashmem_helper.cpp | 245 size_t offsetSize = dataParcel->GetOffsetsSize(); in CreateAshmemParcel() local 246 ashmemParcel->WriteInt32(offsetSize); in CreateAshmemParcel() 247 if (offsetSize > 0) { in CreateAshmemParcel() 250 reinterpret_cast<void*>(dataParcel->GetObjectOffsets()), sizeof(binder_size_t) * offsetSize); in CreateAshmemParcel() 252 ROSEN_LOGD("CreateAshmemParcel invoke CopyFileDescriptor, offsetSize:%{public}zu", offsetSize); in CreateAshmemParcel() 274 int32_t offsetSize = ashmemParcel->ReadInt32(); in ParseFromAshmemParcel() local 275 if (offsetSize > 0) { in ParseFromAshmemParcel() 276 auto* offsets = ashmemParcel->ReadBuffer(sizeof(binder_size_t) * offsetSize); in ParseFromAshmemParcel() 282 dataParcel->InjectOffsets(reinterpret_cast<binder_size_t>(offsets), offsetSize); in ParseFromAshmemParcel() local [all...] |
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/ |
H A D | item_data_box.cpp | 26 void HeifIlocBox::ParseExtents(Item& item, HeifStreamReader &reader, int indexSize, int offsetSize, int lengthSize) in ParseExtents() argument 41 // offsetSize is taken from the set {0, 4, 8} and indicates the length in bytes of 'offset' in ParseExtents() 43 if (offsetSize == UINT32_BYTES_NUM) { in ParseExtents() 45 } else if (offsetSize == UINT64_BYTES_NUM) { in ParseExtents() 66 int offsetSize = (values4 >> offsetSizeShift) & 0xF; in ParseContent() local 88 ParseExtents(item, reader, indexSize, offsetSize, lengthSize); in ParseContent()
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/box/ |
H A D | item_data_box.h | 84 void ParseExtents(Item& item, HeifStreamReader &reader, int indexSize, int offsetSize, int lengthSize);
|
/foundation/ai/neural_network_runtime/test/unittest/ops/ |
H A D | crop_test.cpp | 219 int32_t offsetSize = 1;
in HWTEST_F() local 221 offsetTensor->SetBuffer(offsetValue, sizeof(float) * offsetSize);
in HWTEST_F()
|
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/text/run_napi/ |
H A D | js_run.cpp | 235 size_t offsetSize = offsets.size();
in OnGetOffsets() local 236 for (size_t index = 0; index < offsetSize; ++index) {
in OnGetOffsets()
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libpngplugin/src/ |
H A D | png_decoder.cpp | 775 uint32_t offsetSize = (pngImageInfo_.height - rowNum) * pngImageInfo_.rowDataSize; in SaveRows() local 776 errno_t ret = memcpy_s(offset, offsetSize, row, pngImageInfo_.rowDataSize); in SaveRows() 778 IMAGE_LOGE("copy data fail, ret:%{public}d, rowDataSize:%{public}u, offsetSize:%{public}u.", ret, in SaveRows() 779 pngImageInfo_.rowDataSize, offsetSize); in SaveRows()
|
/foundation/graphic/graphic_2d/rosen/modules/platform/utils/ |
H A D | parcel.cpp | 106 void Parcel::InjectOffsets(binder_size_t offsets, size_t offsetSize) in InjectOffsets() argument
|
H A D | parcel.h | 656 * @param offsetSize Size of the input array. 659 void InjectOffsets(binder_size_t offsets, size_t offsetSize);
|
Completed in 8 milliseconds