Home
last modified time | relevance | path

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

12345678910>>...82

/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.c206 static void reset_callbacks(pa_source_output *o) { in reset_callbacks()
235 pa_source_output *o; in pa_source_output_new() local
535 static void update_n_corked(pa_source_output *o, pa_source_output_state_t state) { in update_n_corked()
549 static void source_output_set_state(pa_source_output *o, pa_source_output_state_t state) { in source_output_set_state()
585 void pa_source_output_unlink(pa_source_output*o) { in pa_source_output_unlink()
649 pa_source_output *o = PA_SOURCE_OUTPUT(mo); in source_output_free() local
679 void pa_source_output_put(pa_source_output *o) { in pa_source_output_put()
723 void pa_source_output_kill(pa_source_output*o) { in pa_source_output_kill()
732 pa_usec_t pa_source_output_get_latency(pa_source_output *o, pa_usec_t *source_latency) { in pa_source_output_get_latency()
751 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/node/deps/v8/src/heap/
Dnew-spaces-inl.h22 bool SemiSpace::Contains(HeapObject o) const { in Contains()
29 bool SemiSpace::Contains(Object o) const { in Contains()
43 bool NewSpace::Contains(Object o) const { in Contains()
47 bool NewSpace::Contains(HeapObject o) const { in Contains()
59 bool NewSpace::ToSpaceContains(Object o) const { return to_space_.Contains(o); } in ToSpaceContains()
60 bool NewSpace::FromSpaceContains(Object o) const { in FromSpaceContains()
/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/pulseaudio/src/tests/
Djson-test.c31 pa_json_object *o; in START_TEST() local
60 pa_json_object *o; in START_TEST() local
97 pa_json_object *o; in START_TEST() local
124 pa_json_object *o; in START_TEST() local
161 pa_json_object *o; in START_TEST() local
193 pa_json_object *o; in START_TEST() local
230 pa_json_object *o; in START_TEST() local
242 pa_json_object *o; in START_TEST() local
261 pa_json_object *o; in START_TEST() local
285 pa_json_object *o; in START_TEST() local
[all …]
/third_party/typescript/tests/baselines/reference/
DexportAsNamespace2(module=commonjs).js26 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
33 }) : (function(o, m, k, k2) { argument
37 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
39 }) : function(o, v) { argument
56 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
63 }) : (function(o, m, k, k2) { argument
67 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
69 }) : function(o, v) { argument
DexportDefault.js47 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
54 }) : (function(o, m, k, k2) { argument
58 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
60 }) : function(o, v) { argument
84 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
91 }) : (function(o, m, k, k2) { argument
95 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
97 }) : function(o, v) { argument
DexportAsNamespace4(module=commonjs).js32 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
39 }) : (function(o, m, k, k2) { argument
43 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
45 }) : function(o, v) { argument
60 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
67 }) : (function(o, m, k, k2) { argument
71 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
73 }) : function(o, v) { argument
DunclosedExportClause01.js25 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
32 }) : (function(o, m, k, k2) { argument
43 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
50 }) : (function(o, m, k, k2) { argument
60 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
67 }) : (function(o, m, k, k2) { argument
78 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
85 }) : (function(o, m, k, k2) { argument
DexportAsNamespace3(module=commonjs).js29 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
62 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
69 }) : (function(o, m, k, k2) { argument
73 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
75 }) : function(o, v) { argument
DexportAsNamespace2(module=amd).js27 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
34 }) : (function(o, m, k, k2) { argument
38 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
40 }) : function(o, v) { argument
59 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
66 }) : (function(o, m, k, k2) { argument
70 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
72 }) : function(o, v) { argument
DexportAsNamespace2(module=umd).js35 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
42 }) : (function(o, m, k, k2) { argument
46 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
48 }) : function(o, v) { argument
75 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
82 }) : (function(o, m, k, k2) { argument
86 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
88 }) : function(o, v) { argument
DexportAsNamespace4(module=amd).js33 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
40 }) : (function(o, m, k, k2) { argument
44 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
46 }) : function(o, v) { argument
63 var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { argument
70 }) : (function(o, m, k, k2) { argument
74 var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { argument
76 }) : 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/modules/
Dmodule-combine-sink.c224 struct output *o, in rate_controller()
249 struct output *o; in adjust_rates() local
375 struct output *o; in time_callback() local
484 static void render_memblock(struct userdata *u, struct output *o, size_t length) { in render_memblock()
530 static void request_memblock(struct output *o, size_t length) { in request_memblock()
552 struct output *o; in sink_input_pop_cb() local
577 struct output *o; in sink_input_process_rewind_cb() local
587 struct output *o; in sink_input_update_max_rewind_cb() local
597 struct output *o; in sink_input_update_max_request_cb() local
612 struct output *o; in sink_input_update_sink_latency_range_cb() local
[all …]

12345678910>>...82