Home
last modified time | relevance | path

Searched defs:o (Results 1 – 25 of 1934) sorted by relevance

12345678910>>...78

/third_party/ltp/tools/sparse/sparse-src/validation/backend/
Dpointer-add.c1 char *caddv(char *p, int o) { char *r = p; r = r + o; return r; } in caddv()
2 void *vaddv(void *p, int o) { void *r = p; r = r + o; return r; } in vaddv()
3 int *iaddv(int *p, int o) { int *r = p; r = r + o; return r; } in iaddv()
5 char *caddc(char *p, int o) { char *r = p; r = r + 3; return r; } in caddc()
6 void *vaddc(void *p, int o) { void *r = p; r = r + 3; return r; } in vaddc()
7 int *iaddc(int *p, int o) { int *r = p; r = r + 3; return r; } in iaddc()
9 char *cincv(char *p, int o) { char *r = p; r += o; return r; } in cincv()
10 void *vincv(void *p, int o) { void *r = p; r += o; return r; } in vincv()
11 int *iincv(int *p, int o) { int *r = p; r += o; return r; } in iincv()
13 char *cincc(char *p, int o) { char *r = p; r += 3; return r; } in cincc()
[all …]
/third_party/pulseaudio/src/pulsecore/
Dsource-output.c205 static void reset_callbacks(pa_source_output *o) { in reset_callbacks()
234 pa_source_output *o; in pa_source_output_new() local
528 static void update_n_corked(pa_source_output *o, pa_source_output_state_t state) { in update_n_corked()
542 static void source_output_set_state(pa_source_output *o, pa_source_output_state_t state) { in source_output_set_state()
578 void pa_source_output_unlink(pa_source_output*o) { in pa_source_output_unlink()
642 pa_source_output *o = PA_SOURCE_OUTPUT(mo); in source_output_free() local
672 void pa_source_output_put(pa_source_output *o) { in pa_source_output_put()
716 void pa_source_output_kill(pa_source_output*o) { in pa_source_output_kill()
725 pa_usec_t pa_source_output_get_latency(pa_source_output *o, pa_usec_t *source_latency) { in pa_source_output_get_latency()
744 void pa_source_output_push(pa_source_output *o, const pa_memchunk *chunk) { in pa_source_output_push()
[all …]
/third_party/pulseaudio/src/pulse/
Doperation.c35 pa_operation *o; in pa_operation_new() local
58 pa_operation *pa_operation_ref(pa_operation *o) { in pa_operation_ref()
66 void pa_operation_unref(pa_operation *o) { in pa_operation_unref()
79 static void operation_unlink(pa_operation *o) { in operation_unlink()
98 static void operation_set_state(pa_operation *o, pa_operation_state_t st) { in operation_set_state()
121 void pa_operation_cancel(pa_operation *o) { in pa_operation_cancel()
128 void pa_operation_done(pa_operation *o) { in pa_operation_done()
135 pa_operation_state_t pa_operation_get_state(const pa_operation *o) { in pa_operation_get_state()
142 void pa_operation_set_state_callback(pa_operation *o, pa_operation_notify_cb_t cb, void *userdata) { in pa_operation_set_state_callback()
/third_party/FreeBSD/sys/sys/
Dbus.h532 #define bus_barrier(r, o, l, f) \ argument
534 #define bus_poke_1(r, o, v) \ argument
536 #define bus_peek_1(r, o, vp) \ argument
538 #define bus_read_1(r, o) \ argument
540 #define bus_read_multi_1(r, o, d, c) \ argument
542 #define bus_read_region_1(r, o, d, c) \ argument
544 #define bus_set_multi_1(r, o, v, c) \ argument
546 #define bus_set_region_1(r, o, v, c) \ argument
548 #define bus_write_1(r, o, v) \ argument
550 #define bus_write_multi_1(r, o, d, c) \ argument
[all …]
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
Ddrf.h36 #define DRF_MW_SPANS(o,drf) (DRF_LW_IDX((o),drf) != DRF_HW_IDX((o),drf)) argument
37 #define DRF_MW_SIZE(o) (sizeof((o)[0]) * 8) argument
39 #define DRF_LW_IDX(o,drf) (DRF_LO(DRF_MW(drf)) / DRF_MW_SIZE(o)) argument
40 #define DRF_LW_LO(o,drf) (DRF_LO(DRF_MW(drf)) % DRF_MW_SIZE(o)) argument
41 #define DRF_LW_HI(o,drf) (DRF_MW_SPANS((o),drf) ? (DRF_MW_SIZE(o) - 1) : DRF_HW_HI((o),drf)) argument
42 #define DRF_LW_BITS(o,drf) (DRF_LW_HI((o),drf) - DRF_LW_LO((o),drf) + 1) argument
43 #define DRF_LW_MASK(o,drf) (~0ULL >> (64 - DRF_LW_BITS((o),drf))) argument
44 #define DRF_LW_SMASK(o,drf) (DRF_LW_MASK((o),drf) << DRF_LW_LO((o),drf)) argument
45 #define DRF_LW_GET(o,drf) (((o)[DRF_LW_IDX((o),drf)] >> DRF_LW_LO((o),drf)) & DRF_LW_MASK((o),drf… argument
46 #define DRF_LW_VAL(o,drf,v) (((v) & DRF_LW_MASK((o),drf)) << DRF_LW_LO((o),drf)) argument
[all …]
/third_party/ltp/tools/sparse/sparse-src/validation/
Dptr-inherit.c11 const int o; in test_const() local
17 volatile int o; in test_volatile() local
23 int __noderef o; in test_noderef() local
29 int __bitwise o; in test_bitwise() local
35 int __user o; in test_user() local
41 int __nocast o; in test_nocast() local
49 static int o; in test_static() local
56 static __thread int o; in test_tls() local
/third_party/jerryscript/tests/jerry/es2015/
Dregexp-routines.js26 var o = { variable
57 RegExp.prototype.toString.call(o); argument
63 var o = {source: {toString: function() {throw "abrupt source toString";}}}; variable
65 RegExp.prototype.toString.call(o); argument
71 var o = {source: "str"}; variable
74 RegExp.prototype.toString.call(o); argument
80 var o = {source: "str", flags: {toString: function() {throw "abrupt flags toString";}}}; variable
82 RegExp.prototype.toString.call(o); argument
88 var o = { variable
Dgenerator-initializer.js50 var o = { variable
60 var o = { get yield() { return 3 + 2 } } variable
66 var o = { yield:7 } variable
101 var o = { get yield() { return 3 + 2 } } variable
108 var o = { yield:7 } variable
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Dany_test.cc111 absl::any o; in TEST() local
120 absl::any o; in TEST() local
133 absl::any o; in TEST() local
143 absl::any o; in TEST() local
154 absl::any o(absl::in_place_type_t<IntMoveOnlyCopyOnly>(), 5, MoveOnly(), in TEST() local
185 absl::any o(absl::in_place_type_t<FunctionType>(), FunctionToEmplace); in TEST() local
198 absl::any o(absl::in_place_type_t<ArrayType>(), ar); in TEST() local
212 absl::any o(absl::in_place_type_t<ListMoveOnlyCopyOnly>(), {1, 2, 3, 4}, in TEST() local
270 absl::any o; in TEST() local
287 absl::any o; in TEST() local
[all …]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Doperand_test.cc27 auto o = Operand::Float(1.2f); in TEST_F() local
33 auto o = Operand::Int(1); in TEST_F() local
39 auto o = Operand::String("my string"); in TEST_F() local
45 auto o = Operand::Float(1.2f); in TEST_F() local
50 auto o = Operand::Int(1); in TEST_F() local
55 auto o = Operand::String("my string"); in TEST_F() local
60 auto o = Operand::String(""); in TEST_F() local
/third_party/python/Objects/
Dcapsule.c68 PyCapsule_IsValid(PyObject *o, const char *name) in PyCapsule_IsValid()
80 PyCapsule_GetPointer(PyObject *o, const char *name) in PyCapsule_GetPointer()
98 PyCapsule_GetName(PyObject *o) in PyCapsule_GetName()
110 PyCapsule_GetDestructor(PyObject *o) in PyCapsule_GetDestructor()
122 PyCapsule_GetContext(PyObject *o) in PyCapsule_GetContext()
134 PyCapsule_SetPointer(PyObject *o, void *pointer) in PyCapsule_SetPointer()
153 PyCapsule_SetName(PyObject *o, const char *name) in PyCapsule_SetName()
167 PyCapsule_SetDestructor(PyObject *o, PyCapsule_Destructor destructor) in PyCapsule_SetDestructor()
181 PyCapsule_SetContext(PyObject *o, void *context) in PyCapsule_SetContext()
257 capsule_dealloc(PyObject *o) in capsule_dealloc()
[all …]
/third_party/typescript/tests/baselines/reference/
DexportDefault.js47 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
50 }) : (function(o, m, k, k2) { argument
54 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
56 }) : function(o, v) { argument
80 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
83 }) : (function(o, m, k, k2) { argument
87 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
89 }) : function(o, v) { argument
DexportAsNamespace2(module=commonjs).js26 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
29 }) : (function(o, m, k, k2) { argument
33 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
35 }) : function(o, v) { argument
52 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
55 }) : (function(o, m, k, k2) { argument
59 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
61 }) : function(o, v) { argument
DexportAsNamespace4(module=commonjs).js32 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
35 }) : (function(o, m, k, k2) { argument
39 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
41 }) : function(o, v) { argument
56 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
59 }) : (function(o, m, k, k2) { argument
63 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
65 }) : function(o, v) { argument
DexportAsNamespace3(module=commonjs).js29 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
32 }) : (function(o, m, k, k2) { argument
36 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
38 }) : function(o, v) { argument
58 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
61 }) : (function(o, m, k, k2) { argument
65 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
67 }) : function(o, v) { argument
DunclosedExportClause01.js25 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
28 }) : (function(o, m, k, k2) { argument
39 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
42 }) : (function(o, m, k, k2) { argument
52 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
55 }) : (function(o, m, k, k2) { argument
66 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
69 }) : (function(o, m, k, k2) { argument
DexportAsNamespace2(module=amd).js27 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
30 }) : (function(o, m, k, k2) { argument
34 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
36 }) : function(o, v) { argument
55 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
58 }) : (function(o, m, k, k2) { argument
62 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
64 }) : function(o, v) { argument
DexportAsNamespace4(module=amd).js33 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
36 }) : (function(o, m, k, k2) { argument
40 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
42 }) : function(o, v) { argument
59 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
62 }) : (function(o, m, k, k2) { argument
66 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
68 }) : function(o, v) { argument
DexportAsNamespace2(module=umd).js35 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
38 }) : (function(o, m, k, k2) { argument
42 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
44 }) : function(o, v) { argument
71 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
74 }) : (function(o, m, k, k2) { argument
78 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
80 }) : function(o, v) { argument
/third_party/skia/tests/
DSkTOptionalTest.cpp14 skstd::optional<int> o; in DEF_TEST() local
20 skstd::optional<int> o(skstd::nullopt); in DEF_TEST() local
27 skstd::optional<const char*> o; in DEF_TEST() local
31 skstd::optional<const char*> o("Bye"); in DEF_TEST() local
35 skstd::optional<std::unique_ptr<int>> o; in DEF_TEST() local
47 skstd::optional<const char*> o("test"); in DEF_TEST() local
58 skstd::optional<const char*> o("test"); in DEF_TEST() local
69 skstd::optional<float> o = fn(); in DEF_TEST() local
76 skstd::optional<int> o[] = {1, 2, skstd::nullopt, 4, 5}; in DEF_TEST() local
194 skstd::optional<SkTOptionalTestPayload> o(1); in DEF_TEST() local
[all …]
/third_party/python/Include/
Ddatetime.h120 #define _PyDateTime_HAS_TZINFO(o) (((_PyDateTime_BaseTZInfo *)(o))->hastzinfo) argument
122 #define PyDateTime_GET_YEAR(o) ((((PyDateTime_Date*)o)->data[0] << 8) | \ argument
124 #define PyDateTime_GET_MONTH(o) (((PyDateTime_Date*)o)->data[2]) argument
125 #define PyDateTime_GET_DAY(o) (((PyDateTime_Date*)o)->data[3]) argument
127 #define PyDateTime_DATE_GET_HOUR(o) (((PyDateTime_DateTime*)o)->data[4]) argument
128 #define PyDateTime_DATE_GET_MINUTE(o) (((PyDateTime_DateTime*)o)->data[5]) argument
129 #define PyDateTime_DATE_GET_SECOND(o) (((PyDateTime_DateTime*)o)->data[6]) argument
130 #define PyDateTime_DATE_GET_MICROSECOND(o) \ argument
134 #define PyDateTime_DATE_GET_FOLD(o) (((PyDateTime_DateTime*)o)->fold) argument
135 #define PyDateTime_DATE_GET_TZINFO(o) (_PyDateTime_HAS_TZINFO(o) ? \ argument
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Daudio-resampler-neon.h21 inner_product_gint16_full_1_neon (gint16 * o, const gint16 * a, in inner_product_gint16_full_1_neon()
64 inner_product_gint16_linear_1_neon (gint16 * o, const gint16 * a, in inner_product_gint16_linear_1_neon()
121 inner_product_gint16_cubic_1_neon (gint16 * o, const gint16 * a, in inner_product_gint16_cubic_1_neon()
178 gint16 *o = op, *a = ap, *ic = icp; in interpolate_gint16_linear_neon() local
209 gint16 *o = op, *a = ap, *ic = icp; in interpolate_gint16_cubic_neon() local
246 inner_product_gint32_full_1_neon (gint32 * o, const gint32 * a, in inner_product_gint32_full_1_neon()
289 inner_product_gint32_linear_1_neon (gint32 * o, const gint32 * a, in inner_product_gint32_linear_1_neon()
331 inner_product_gint32_cubic_1_neon (gint32 * o, const gint32 * a, in inner_product_gint32_cubic_1_neon()
386 gint32 *o = op, *a = ap, *ic = icp; in interpolate_gint32_linear_neon() local
423 gint32 *o = op, *a = ap, *ic = icp; in interpolate_gint32_cubic_neon() local
[all …]
/third_party/pulseaudio/src/tests/
Djson-test.c30 pa_json_object *o; in START_TEST() local
54 pa_json_object *o; in START_TEST() local
72 pa_json_object *o; in START_TEST() local
94 pa_json_object *o; in START_TEST() local
106 pa_json_object *o; in START_TEST() local
127 pa_json_object *o; in START_TEST() local
182 pa_json_object *o; in START_TEST() local
/third_party/pulseaudio/src/modules/
Dmodule-combine-sink.c185 struct output *o; in adjust_rates() local
373 static void render_memblock(struct userdata *u, struct output *o, size_t length) { in render_memblock()
415 static void request_memblock(struct output *o, size_t length) { in request_memblock()
437 struct output *o; in sink_input_pop_cb() local
462 struct output *o; in sink_input_process_rewind_cb() local
472 struct output *o; in sink_input_update_max_rewind_cb() local
482 struct output *o; in sink_input_update_max_request_cb() local
497 struct output *o; in sink_input_update_sink_latency_range_cb() local
526 struct output *o; in sink_input_attach_cb() local
577 struct output *o; in sink_input_detach_cb() local
[all …]
/third_party/libabigail/src/
Dabg-writer.cc88 ostringstream o; in get_id() local
101 ostringstream o; in get_id_with_prefix() local
938 do_indent(ostream& o, unsigned nb_whitespaces) in do_indent()
1005 ostream& o = ctxt.get_ostream(); in annotate() local
1038 ostream& o = ctxt.get_ostream(); in annotate() local
1069 ostream& o = ctxt.get_ostream(); in annotate() local
1105 ostream& o = ctxt.get_ostream(); in annotate() local
1150 ostream& o = ctxt.get_ostream(); in annotate() local
1200 ostream &o = ctxt.get_ostream(); in annotate() local
1249 ostream &o = ctxt.get_ostream(); in write_location() local
[all …]

12345678910>>...78