/third_party/cmsis/CMSIS/Core/Include/m-profile/ |
H A D | armv7m_cachel1.h | 117 int32_t op_size = isize + (((uint32_t)addr) & (__SCB_ICACHE_LINE_SIZE - 1U)); in SCB_InvalidateICache_by_Addr() local 125 op_size -= __SCB_ICACHE_LINE_SIZE; in SCB_InvalidateICache_by_Addr() 126 } while ( op_size > 0 ); in SCB_InvalidateICache_by_Addr() 360 int32_t op_size = dsize + (((uint32_t)addr) & (__SCB_DCACHE_LINE_SIZE - 1U)); in SCB_InvalidateDCache_by_Addr() local 368 op_size -= __SCB_DCACHE_LINE_SIZE; in SCB_InvalidateDCache_by_Addr() 369 } while ( op_size > 0 ); in SCB_InvalidateDCache_by_Addr() 390 int32_t op_size = dsize + (((uint32_t)addr) & (__SCB_DCACHE_LINE_SIZE - 1U)); in SCB_CleanDCache_by_Addr() local 398 op_size -= __SCB_DCACHE_LINE_SIZE; in SCB_CleanDCache_by_Addr() 399 } while ( op_size > 0 ); in SCB_CleanDCache_by_Addr() 420 int32_t op_size in SCB_CleanInvalidateDCache_by_Addr() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | dxv.c | 51 int64_t op_size[4]; // Opcodes size member 428 static int get_opcodes(GetByteContext *gb, uint32_t *table, uint8_t *dst, int op_size, int nb_elements) in get_opcodes() argument 451 for (i = 0; i < op_size; i++) { in get_opcodes() 470 static int dxv_decompress_opcodes(GetByteContext *gb, void *dstp, size_t op_size) in dxv_decompress_opcodes() argument 477 bytestream2_get_buffer(gb, dstp, op_size); in dxv_decompress_opcodes() 480 memset(dstp, bytestream2_get_byte(gb), op_size); in dxv_decompress_opcodes() 488 ret = get_opcodes(gb, table, dstp, op_size, elements); in dxv_decompress_opcodes() 498 int op_size, in dxv_decompress_cgo() 510 if (oi >= op_size) in dxv_decompress_cgo() 796 unsigned op_size in dxv_decompress_yo() local 495 dxv_decompress_cgo(DXVContext *ctx, GetByteContext *gb, uint8_t *tex_data, int tex_size, uint8_t *op_data, int *oindex, int op_size, uint8_t **dstp, int *statep, uint8_t **tab0, uint8_t **tab1, int offset) dxv_decompress_cgo() argument [all...] |
/third_party/libfuse/include/ |
H A D | fuse.h | 954 * @param op_size the size of the fuse_operations structure 962 size_t op_size, void *private_data); 967 size_t op_size, void *private_data); 971 size_t op_size, void *private_data); 1134 size_t op_size, void *private_data); 1285 * @param op_size the size of the fuse_operations structure 1291 struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size,
|
H A D | fuse_lowlevel.h | 2013 * @param op_size sizeof(struct fuse_lowlevel_ops) 2020 size_t op_size, void *userdata);
|
/third_party/ntfs-3g/include/fuse-lite/ |
H A D | fuse.h | 488 * @param op_size the size of the fuse_operations structure 493 const struct fuse_operations *op, size_t op_size, 635 * @param op_size the size of the fuse_operations structure 639 struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size,
|
H A D | fuse_lowlevel.h | 1140 * @param op_size sizeof(struct fuse_lowlevel_ops) 1146 size_t op_size, void *userdata);
|
/third_party/cmsis/CMSIS/Core/Include/ |
H A D | core_starmc1.h | 3155 int32_t op_size = isize + (((uint32_t)addr) & (__SCB_ICACHE_LINE_SIZE - 1U)); in SCB_InvalidateICache_by_Addr() local 3163 op_size -= __SCB_ICACHE_LINE_SIZE; in SCB_InvalidateICache_by_Addr() 3164 } while ( op_size > 0 ); in SCB_InvalidateICache_by_Addr() 3368 int32_t op_size = dsize + (((uint32_t)addr) & (__SCB_DCACHE_LINE_SIZE - 1U)); in SCB_InvalidateDCache_by_Addr() local 3376 op_size -= __SCB_DCACHE_LINE_SIZE; in SCB_InvalidateDCache_by_Addr() 3377 } while ( op_size > 0 ); in SCB_InvalidateDCache_by_Addr() 3398 int32_t op_size = dsize + (((uint32_t)addr) & (__SCB_DCACHE_LINE_SIZE - 1U)); in SCB_CleanDCache_by_Addr() local 3406 op_size -= __SCB_DCACHE_LINE_SIZE; in SCB_CleanDCache_by_Addr() 3407 } while ( op_size > 0 ); in SCB_CleanDCache_by_Addr() 3428 int32_t op_size in SCB_CleanInvalidateDCache_by_Addr() local [all...] |
/third_party/libfuse/lib/ |
H A D | helper.c | 308 size_t op_size, void *user_data) in fuse_main_real() 345 fuse = fuse_new_31(&args, op, op_size, user_data); in fuse_main_real() 307 fuse_main_real(int argc, char *argv[], const struct fuse_operations *op, size_t op_size, void *user_data) fuse_main_real() argument
|
H A D | fuse_i.h | 182 size_t op_size, void *private_data);
|
H A D | fuse.c | 4814 struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size, in fuse_fs_new() argument 4819 if (sizeof(struct fuse_operations) < op_size) { in fuse_fs_new() 4821 op_size = sizeof(struct fuse_operations); in fuse_fs_new() 4832 memcpy(&fs->op, op, op_size); in fuse_fs_new() 4884 size_t op_size, void *user_data) in fuse_new_31() 4923 fs = fuse_fs_new(op, op_size, user_data); in fuse_new_31() 5032 size_t op_size, void *private_data); 5036 size_t op_size, void *user_data) in fuse_new_30() 5056 return fuse_new_31(args, op, op_size, user_data); in fuse_new_30() 4882 fuse_new_31(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *user_data) fuse_new_31() argument 5034 fuse_new_30(struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *user_data) fuse_new_30() argument
|
H A D | fuse_lowlevel.c | 3016 size_t op_size, void *userdata) 3022 if (sizeof(struct fuse_lowlevel_ops) < op_size) { 3024 op_size = sizeof(struct fuse_lowlevel_ops); 3090 memcpy(&se->op, op, op_size); 3014 fuse_session_new(struct fuse_args *args, const struct fuse_lowlevel_ops *op, size_t op_size, void *userdata) global() argument
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_lowlevel.c | 1422 size_t op_size, void *userdata) in fuse_lowlevel_new() 1431 if (sizeof(struct fuse_lowlevel_ops) < op_size) { in fuse_lowlevel_new() 1433 op_size = sizeof(struct fuse_lowlevel_ops); in fuse_lowlevel_new() 1452 memcpy(&f->op, op, op_size); in fuse_lowlevel_new() 1420 fuse_lowlevel_new(struct fuse_args *args, const struct fuse_lowlevel_ops *op, size_t op_size, void *userdata) fuse_lowlevel_new() argument
|
H A D | fuse.c | 3031 struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size, in fuse_fs_new() argument 3036 if (sizeof(struct fuse_operations) < op_size) { in fuse_fs_new() 3038 op_size = sizeof(struct fuse_operations); in fuse_fs_new() 3049 memcpy(&fs->op, op, op_size); in fuse_fs_new() 3054 const struct fuse_operations *op, size_t op_size, in fuse_new() 3071 fs = fuse_fs_new(op, op_size, user_data); in fuse_new() 3053 fuse_new(struct fuse_chan *ch, struct fuse_args *args, const struct fuse_operations *op, size_t op_size, void *user_data) fuse_new() argument
|
/third_party/node/deps/v8/src/diagnostics/ia32/ |
H A D | disasm-ia32.cc | 684 int op_size = PrintOperands(mnem, REG_OPER_OP_ORDER, data + 2); in CMov() local 685 return 2 + op_size; // includes 0x0F in CMov()
|