/third_party/ffmpeg/libswresample/ |
H A D | options.c | 36 #define PARAM AV_OPT_FLAG_AUDIO_PARAM macro 42 OFFSET(user_in_ch_count ), AV_OPT_TYPE_INT, {.i64=0 }, 0 , SWR_CH_MAX, PARAM|DEPREC}, 44 OFFSET(user_in_ch_count ), AV_OPT_TYPE_INT, {.i64=0 }, 0 , SWR_CH_MAX, PARAM|DEPREC}, 46 OFFSET(user_out_ch_count ), AV_OPT_TYPE_INT, {.i64=0 }, 0 , SWR_CH_MAX, PARAM|DEPREC}, 48 OFFSET(user_out_ch_count ), AV_OPT_TYPE_INT, {.i64=0 }, 0 , SWR_CH_MAX, PARAM|DEPREC}, 50 {"uch" , "set used channel count" , OFFSET(user_used_ch_count), AV_OPT_TYPE_INT, {.i64=0 }, 0 , SWR_CH_MAX, PARAM}, 51 {"used_channel_count" , "set used channel count" , OFFSET(user_used_ch_count), AV_OPT_TYPE_INT, {.i64=0 }, 0 , SWR_CH_MAX, PARAM}, 52 {"isr" , "set input sample rate" , OFFSET( in_sample_rate), AV_OPT_TYPE_INT , {.i64=0 }, 0 , INT_MAX , PARAM}, 53 {"in_sample_rate" , "set input sample rate" , OFFSET( in_sample_rate), AV_OPT_TYPE_INT , {.i64=0 }, 0 , INT_MAX , PARAM}, 54 {"osr" , "set output sample rate" , OFFSET(out_sample_rate), AV_OPT_TYPE_INT , {.i64=0 }, 0 , INT_MAX , PARAM}, [all...] |
/third_party/ffmpeg/libavresample/ |
H A D | options.c | 36 #define PARAM AV_OPT_FLAG_AUDIO_PARAM macro 39 { "in_channel_layout", "Input Channel Layout", OFFSET(in_channel_layout), AV_OPT_TYPE_INT64, { .i64 = 0 }, INT64_MIN, INT64_MAX, PARAM }, 40 { "in_sample_fmt", "Input Sample Format", OFFSET(in_sample_fmt), AV_OPT_TYPE_INT, { .i64 = AV_SAMPLE_FMT_S16 }, AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_NB-1, PARAM }, 41 { "in_sample_rate", "Input Sample Rate", OFFSET(in_sample_rate), AV_OPT_TYPE_INT, { .i64 = 48000 }, 1, INT_MAX, PARAM }, 42 { "out_channel_layout", "Output Channel Layout", OFFSET(out_channel_layout), AV_OPT_TYPE_INT64, { .i64 = 0 }, INT64_MIN, INT64_MAX, PARAM }, 43 { "out_sample_fmt", "Output Sample Format", OFFSET(out_sample_fmt), AV_OPT_TYPE_INT, { .i64 = AV_SAMPLE_FMT_S16 }, AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_NB-1, PARAM }, 44 { "out_sample_rate", "Output Sample Rate", OFFSET(out_sample_rate), AV_OPT_TYPE_INT, { .i64 = 48000 }, 1, INT_MAX, PARAM }, 45 { "internal_sample_fmt", "Internal Sample Format", OFFSET(internal_sample_fmt), AV_OPT_TYPE_INT, { .i64 = AV_SAMPLE_FMT_NONE }, AV_SAMPLE_FMT_NONE, AV_SAMPLE_FMT_NB-1, PARAM, "internal_sample_fmt" }, 46 {"u8" , "8-bit unsigned integer", 0, AV_OPT_TYPE_CONST, {.i64 = AV_SAMPLE_FMT_U8 }, INT_MIN, INT_MAX, PARAM, "internal_sample_fmt"}, 47 {"s16", "16-bit signed integer", 0, AV_OPT_TYPE_CONST, {.i64 = AV_SAMPLE_FMT_S16 }, INT_MIN, INT_MAX, PARAM, "internal_sample_fm [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff-interp-cs-common.hh | 225 template <typename ENV, typename PARAM> 228 static void rmoveto (ENV &env, PARAM& param) {} in rmoveto() 229 static void hmoveto (ENV &env, PARAM& param) {} in hmoveto() 230 static void vmoveto (ENV &env, PARAM& param) {} in vmoveto() 231 static void rlineto (ENV &env, PARAM& param) {} in rlineto() 232 static void hlineto (ENV &env, PARAM& param) {} in hlineto() 233 static void vlineto (ENV &env, PARAM& param) {} in vlineto() 234 static void rrcurveto (ENV &env, PARAM& param) {} in rrcurveto() 235 static void rcurveline (ENV &env, PARAM& param) {} in rcurveline() 236 static void rlinecurve (ENV &env, PARAM in rcurveline() [all...] |
H A D | hb-cff1-interp-cs.hh | 84 template <typename OPSET, typename PARAM, typename PATH=path_procs_null_t<cff1_cs_interp_env_t, PARAM>> 85 struct cff1_cs_opset_t : cs_opset_t<number_t, OPSET, cff1_cs_interp_env_t, PARAM, PATH> 90 static void process_op (op_code_t op, cff1_cs_interp_env_t &env, PARAM& param) in process_op() 112 static void check_width (op_code_t op, cff1_cs_interp_env_t &env, PARAM& param) in check_width() 142 static void process_seac (cff1_cs_interp_env_t &env, PARAM& param) in process_seac() 146 static void flush_args (cff1_cs_interp_env_t &env, PARAM& param) in flush_args() 153 typedef cs_opset_t<number_t, OPSET, cff1_cs_interp_env_t, PARAM, PATH> SUPER; 156 template <typename OPSET, typename PARAM> 157 struct cff1_cs_interpreter_t : cs_interpreter_t<cff1_cs_interp_env_t, OPSET, PARAM> {}; [all...] |
H A D | hb-cff2-interp-cs.hh | 197 template <typename OPSET, typename PARAM, typename PATH=path_procs_null_t<cff2_cs_interp_env_t, PARAM>> 198 struct cff2_cs_opset_t : cs_opset_t<blend_arg_t, OPSET, cff2_cs_interp_env_t, PARAM, PATH> 200 static void process_op (op_code_t op, cff2_cs_interp_env_t &env, PARAM& param) in process_op() 232 static void process_blend (cff2_cs_interp_env_t &env, PARAM& param) in process_blend() 257 static void process_vsindex (cff2_cs_interp_env_t &env, PARAM& param) in process_vsindex() 264 typedef cs_opset_t<blend_arg_t, OPSET, cff2_cs_interp_env_t, PARAM, PATH> SUPER; 267 template <typename OPSET, typename PARAM> 268 struct cff2_cs_interpreter_t : cs_interpreter_t<cff2_cs_interp_env_t, OPSET, PARAM> {};
|
H A D | hb-cff-interp-dict-common.hh | 179 template <typename OPSET, typename PARAM, typename ENV=num_interp_env_t> 182 bool interpret (PARAM& param) in interpret()
|
/third_party/mesa3d/src/gallium/winsys/virgl/drm/ |
H A D | virgl_drm_winsys.h | 80 #define PARAM(x) (struct param) { x, #x, 0 } macro 82 struct param params[] = { PARAM(VIRTGPU_PARAM_3D_FEATURES), 83 PARAM(VIRTGPU_PARAM_CAPSET_QUERY_FIX), 84 PARAM(VIRTGPU_PARAM_RESOURCE_BLOB), 85 PARAM(VIRTGPU_PARAM_HOST_VISIBLE), 86 PARAM(VIRTGPU_PARAM_CROSS_DEVICE), 87 PARAM(VIRTGPU_PARAM_CONTEXT_INIT), 88 PARAM(VIRTGPU_PARAM_SUPPORTED_CAPSET_IDs)
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | trace.h | 23 #define ANGLE_TRACE_EVENT1(CATEGORY, EVENT, NAME, PARAM) \ 24 TRACE_EVENT1(ANGLEPlatformCurrent(), CATEGORY, EVENT, NAME, PARAM)
|
/third_party/ffmpeg/libavcodec/ |
H A D | dcadec.c | 386 #define PARAM AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM macro 389 { "core_only", "Decode core only without extensions", OFFSET(core_only), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, PARAM }, 393 { .i64 = CHANNEL_ORDER_DEFAULT }, 0, 1, PARAM, "channel_order" }, 395 { .i64 = CHANNEL_ORDER_DEFAULT }, .flags = PARAM, "channel_order" }, 397 0, AV_OPT_TYPE_CONST, { .i64 = CHANNEL_ORDER_CODED }, .flags = PARAM, "channel_order" }, 400 AV_OPT_TYPE_CHLAYOUT, {.str = NULL}, .flags = PARAM },
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fImplementationLimitTests.cpp | 191 #define LIMIT_CASE(NAME, PARAM, TYPE, MIN_VAL) \ in init() 192 addChild(new LimitQueryCase<TYPE>(m_context, #NAME, #PARAM, PARAM, MIN_VAL)) in init()
|
/third_party/skia/bench/ |
H A D | DashBench.cpp | 442 #define PARAM(array) array, SK_ARRAY_COUNT(array) macro 444 DEF_BENCH( return new DashBench(PARAM(gDots), 0); ) 445 DEF_BENCH( return new DashBench(PARAM(gDots), 1); ) 446 DEF_BENCH( return new DashBench(PARAM(gDots), 1, true); ) 447 DEF_BENCH( return new DashBench(PARAM(gDots), 4); )
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuInterval.hpp | 260 //! results. While evaluating BODY, PARAM is bound to the bound of ARG, and 262 #define TCU_INTERVAL_APPLY_MONOTONE1(DST, PARAM, ARG, VAR, BODY) do \ 273 const double PARAM = VAR##_arg_.lo(); \ 278 const double PARAM = VAR##_arg_.hi(); \
|
/third_party/ltp/include/mk/ |
H A D | functions.mk | 38 install -m $$(INSTALL_MODE) $(shell test -d "$(2)/$(1)" && echo "-d") $(PARAM) "$(2)/$(1)" $$@ 39 $(shell test -d "$(2)/$(1)" && echo "install -m "'$$(INSTALL_MODE) $(PARAM)' "$(2)/$(1)/*" -t '$$@')
|
/third_party/ffmpeg/libavformat/ |
H A D | oggenc.c | 83 #define PARAM AV_OPT_FLAG_ENCODING_PARAM macro 87 OFFSET(serial_offset), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, PARAM }, 89 OFFSET(pref_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, MAX_PAGE_SIZE, PARAM}, 91 OFFSET(pref_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, MAX_PAGE_SIZE, PARAM }, 93 OFFSET(pref_duration), AV_OPT_TYPE_INT64, { .i64 = 1000000 }, 0, INT64_MAX, PARAM },
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_lowlevel.c | 35 #define PARAM(inarg) (((const char *)(inarg)) + sizeof(*(inarg))) macro 565 const char *name = PARAM(arg); in do_mknod() 596 req->f->op.mkdir(req, nodeid, PARAM(arg), arg->mode); in do_mkdir() 635 const char *oldname = PARAM(arg); in do_rename() 649 req->f->op.link(req, arg->oldnodeid, nodeid, PARAM(arg)); in do_link() 660 const char *name = PARAM(arg); in do_create() 718 buf = PARAM(arg); in do_write() 858 const char *name = PARAM(arg); in do_setxattr() 872 req->f->op.getxattr(req, nodeid, PARAM(arg), arg->size); in do_getxattr() 1044 const void *in_buf = arg->in_size ? PARAM(ar in do_ioctl() [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fImplementationLimitTests.cpp | 435 #define LIMIT_CASE(NAME, PARAM, TYPE, MIN_VAL) \ in init() 436 addChild(new LimitQueryCase<TYPE>(m_context, #NAME, #PARAM, PARAM, MIN_VAL)) in init()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.h | 94 PARAM = 4, enumerator
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | CheckTags.java | 215 static final int PARAM = 8; field in CheckTags 447 case PARAM: in doTags()
|
H A D | GatherAPIData.java | 578 case PARAM: in tagStatus() 627 private static final int PARAM = 8; field in GatherAPIData
|
H A D | GatherAPIDataOld.java | 440 case PARAM: in tagStatus() 489 private static final int PARAM = 8; field in GatherAPIDataOld
|
H A D | CheckAPI.java | 1009 case PARAM: in tagStatus() 1032 private static final int PARAM = 8; field in CheckAPI
|
/third_party/libfuse/lib/ |
H A D | fuse_lowlevel.c | 39 #define PARAM(inarg) (((char *)(inarg)) + sizeof(*(inarg))) macro 1122 struct fuse_forget_one *param = (void *) PARAM(arg); 1230 char *name = PARAM(arg); 1251 req->se->op.mkdir(req, nodeid, PARAM(arg), arg->mode); 1290 char *oldname = PARAM(arg); 1303 char *oldname = PARAM(arg); 1318 req->se->op.link(req, arg->oldnodeid, nodeid, PARAM(arg)); 1329 char *name = PARAM(arg); 1391 param = PARAM(arg); 1425 bufv.buf[0].mem = PARAM(ar [all...] |
/third_party/backends/backend/ |
H A D | pie-scsidef.h | 135 #define PARAM 0x0F macro 298 static unsigned char paramC[] = { PARAM, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/MCTargetDesc/ |
H A D | NVPTXInstPrinter.cpp | 240 case NVPTX::PTXLdStInstCode::PARAM: in printLdStCode()
|
/third_party/mesa3d/src/mesa/program/ |
H A D | program_parse.y | 169 %token PARAM 750 yyerror(& @1, state, "non-array access to array PARAM"); 863 yyerror(& @1, state, "array access to non-PARAM variable"); 1081 PARAM_singleStmt: PARAM IDENTIFIER paramSingleInit 1099 PARAM_multipleStmt: PARAM IDENTIFIER '[' optArraySize ']' paramMultipleInit 2600 yyerror(& loc, state, "invalid PARAM usage");
|