Home
last modified time | relevance | path

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

12345678910>>...70

/third_party/flatbuffers/tests/MyGame/Example/
DMonster.kt25 val o = __offset(4) in pos() constant
34 val o = __offset(6) constant
38 val o = __offset(6) in mutateMana() constant
48 val o = __offset(8) constant
52 val o = __offset(8) in mutateHp() constant
62 val o = __offset(10) constant
68 val o = __offset(14) in nameInByteBuffer() constant
77 val o = __offset(14); return if (o != 0) __vector_len(o) else 0 constant in MyGame.Example.Monster
82 val o = __offset(14) in inventoryInByteBuffer() constant
92 val o = __offset(16) constant in MyGame.Example.Monster
[all …]
DTypeAliases.kt22 val o = __offset(4) constant in MyGame.Example.TypeAliases
26 val o = __offset(4) in mutateI8() constant
36 val o = __offset(6) constant in MyGame.Example.TypeAliases
40 val o = __offset(6) in mutateU8() constant
50 val o = __offset(8) constant
54 val o = __offset(8) in mutateI16() constant
64 val o = __offset(10) constant
68 val o = __offset(10) in mutateU16() constant
78 val o = __offset(12) constant in MyGame.Example.TypeAliases
82 val o = __offset(12) in mutateI32() constant
[all …]
DMonster.java23 …public MyGame.Example.Vec3 pos(MyGame.Example.Vec3 obj) { int o = __offset(4); return o != 0 ? obj… in pos() local
24 public short mana() { int o = __offset(6); return o != 0 ? bb.getShort(o + bb_pos) : 150; } in mana() local
25 …public boolean mutateMana(short mana) { int o = __offset(6); if (o != 0) { bb.putShort(o + bb_pos,… in mutateMana() local
26 public short hp() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) : 100; } in hp() local
27 …public boolean mutateHp(short hp) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, hp)… in mutateHp() local
28 public String name() { int o = __offset(10); return o != 0 ? __string(o + bb_pos) : null; } in name() local
31 …public int inventory(int j) { int o = __offset(14); return o != 0 ? bb.get(__vector(o) + j * 1) & … in inventory() local
32 public int inventoryLength() { int o = __offset(14); return o != 0 ? __vector_len(o) : 0; } in inventoryLength() local
34 …public ByteVector inventoryVector(ByteVector obj) { int o = __offset(14); return o != 0 ? obj.__as… in inventoryVector() local
37 …public boolean mutateInventory(int j, int inventory) { int o = __offset(14); if (o != 0) { bb.put(… in mutateInventory() local
[all …]
DTypeAliases.java18 public byte i8() { int o = __offset(4); return o != 0 ? bb.get(o + bb_pos) : 0; } in i8() local
19 …public boolean mutateI8(byte i8) { int o = __offset(4); if (o != 0) { bb.put(o + bb_pos, i8); retu… in mutateI8() local
20 public int u8() { int o = __offset(6); return o != 0 ? bb.get(o + bb_pos) & 0xFF : 0; } in u8() local
21 …public boolean mutateU8(int u8) { int o = __offset(6); if (o != 0) { bb.put(o + bb_pos, (byte)u8);… in mutateU8() local
22 public short i16() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) : 0; } in i16() local
23 …public boolean mutateI16(short i16) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, i… in mutateI16() local
24 public int u16() { int o = __offset(10); return o != 0 ? bb.getShort(o + bb_pos) & 0xFFFF : 0; } in u16() local
25 …public boolean mutateU16(int u16) { int o = __offset(10); if (o != 0) { bb.putShort(o + bb_pos, (s… in mutateU16() local
26 public int i32() { int o = __offset(12); return o != 0 ? bb.getInt(o + bb_pos) : 0; } in i32() local
27 …public boolean mutateI32(int i32) { int o = __offset(12); if (o != 0) { bb.putInt(o + bb_pos, i32)… in mutateI32() local
[all …]
DStat.kt22 val o = __offset(4) constant
29 val o = __offset(6) in idInByteBuffer() constant
33 val o = __offset(6) in mutateVal_() constant
43 val o = __offset(8) constant in MyGame.Example.Stat
47 val o = __offset(8) in mutateCount() constant
79 val o = builder.endTable() in startStat() constant
/third_party/flatbuffers/tests/optional_scalars/
DScalarStuff.kt22 val o = __offset(4) constant
27 val o = __offset(6) constant
32 val o = __offset(8) constant
37 val o = __offset(10) constant in optional_scalars.ScalarStuff
42 val o = __offset(12) constant
47 val o = __offset(14) constant
52 val o = __offset(16) constant
57 val o = __offset(18) constant in optional_scalars.ScalarStuff
62 val o = __offset(20) constant in optional_scalars.ScalarStuff
67 val o = __offset(22) constant in optional_scalars.ScalarStuff
[all …]
DScalarStuff.java19 public byte justI8() { int o = __offset(4); return o != 0 ? bb.get(o + bb_pos) : 0; } in justI8() local
21 public byte maybeI8() { int o = __offset(6); return o != 0 ? bb.get(o + bb_pos) : 0; } in maybeI8() local
22 public byte defaultI8() { int o = __offset(8); return o != 0 ? bb.get(o + bb_pos) : 42; } in defaultI8() local
23 public int justU8() { int o = __offset(10); return o != 0 ? bb.get(o + bb_pos) & 0xFF : 0; } in justU8() local
25 public int maybeU8() { int o = __offset(12); return o != 0 ? bb.get(o + bb_pos) & 0xFF : 0; } in maybeU8() local
26 public int defaultU8() { int o = __offset(14); return o != 0 ? bb.get(o + bb_pos) & 0xFF : 42; } in defaultU8() local
27 public short justI16() { int o = __offset(16); return o != 0 ? bb.getShort(o + bb_pos) : 0; } in justI16() local
29 public short maybeI16() { int o = __offset(18); return o != 0 ? bb.getShort(o + bb_pos) : 0; } in maybeI16() local
30 public short defaultI16() { int o = __offset(20); return o != 0 ? bb.getShort(o + bb_pos) : 42; } in defaultI16() local
31 …public int justU16() { int o = __offset(22); return o != 0 ? bb.getShort(o + bb_pos) & 0xFFFF : 0;… in justU16() local
[all …]
/third_party/flatbuffers/tests/MyGame/
DMonsterExtra.kt22 val o = __offset(4) constant
26 val o = __offset(4) in mutateD0() constant
36 val o = __offset(6) constant
40 val o = __offset(6) in mutateD1() constant
50 val o = __offset(8) constant
54 val o = __offset(8) in mutateD2() constant
64 val o = __offset(10) constant in MyGame.MonsterExtra
68 val o = __offset(10) in mutateD3() constant
78 val o = __offset(12) constant in MyGame.MonsterExtra
82 val o = __offset(12) in mutateF0() constant
[all …]
DMonsterExtra.java19 public double d0() { int o = __offset(4); return o != 0 ? bb.getDouble(o + bb_pos) : Double.NaN; } in d0() local
20 …public boolean mutateD0(double d0) { int o = __offset(4); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD0() local
21 public double d1() { int o = __offset(6); return o != 0 ? bb.getDouble(o + bb_pos) : Double.NaN; } in d1() local
22 …public boolean mutateD1(double d1) { int o = __offset(6); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD1() local
23 …public double d2() { int o = __offset(8); return o != 0 ? bb.getDouble(o + bb_pos) : Double.POSITI… in d2() local
24 …public boolean mutateD2(double d2) { int o = __offset(8); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD2() local
25 …public double d3() { int o = __offset(10); return o != 0 ? bb.getDouble(o + bb_pos) : Double.NEGAT… in d3() local
26 …public boolean mutateD3(double d3) { int o = __offset(10); if (o != 0) { bb.putDouble(o + bb_pos, … in mutateD3() local
27 public float f0() { int o = __offset(12); return o != 0 ? bb.getFloat(o + bb_pos) : Float.NaN; } in f0() local
28 …public boolean mutateF0(float f0) { int o = __offset(12); if (o != 0) { bb.putFloat(o + bb_pos, f0… in mutateF0() local
[all …]
/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/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.kt22 val o = __offset(4) in fooTable() constant
31 val o = __offset(6) constant in NamespaceA.TableInFirstNS
35 val o = __offset(6) in mutateFooEnum() constant
45 val o = __offset(8) constant
49 val o = __offset(8) in mutateFooUnionType() constant
58 val o = __offset(10); return if (o != 0) __union(obj, o + bb_pos) else null in fooUnion() constant
62 val o = __offset(12) in fooStruct() constant
83 val o = builder.endTable() in startTableInFirstNS() constant
/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/flatbuffers/tests/union_vector/
DMovie.kt20 val o = __offset(4) constant
24 val o = __offset(4) in mutateMainCharacterType() constant
33 val o = __offset(6); return if (o != 0) __union(obj, o + bb_pos) else null in mainCharacter() constant
36 val o = __offset(8) in charactersType() constant
45 val o = __offset(8); return if (o != 0) __vector_len(o) else 0 constant
50 val o = __offset(8) in charactersTypeInByteBuffer() constant
59 val o = __offset(10) in characters() constant
68 val o = __offset(10); return if (o != 0) __vector_len(o) else 0 constant
108 val o = builder.endTable() in startCharactersVector() constant
/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
/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/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/
Dmonster_test_generated.swift500 …@discardableResult internal func mutate(color: MyGame_Example_Color) -> Bool {let o = _accessor.of… in mutate() variable
567 …@discardableResult public func mutate(val: Int64) -> Bool {let o = _accessor.offset(VTOFFSET.val.v… in mutate() variable
569 …@discardableResult public func mutate(count: UInt16) -> Bool {let o = _accessor.offset(VTOFFSET.co… in mutate() variable
676 …@discardableResult public func mutate(id: UInt64) -> Bool {let o = _accessor.offset(VTOFFSET.id.v)… in mutate() variable
815 …@discardableResult public func mutate(mana: Int16) -> Bool {let o = _accessor.offset(VTOFFSET.mana… in mutate() variable
817 …@discardableResult public func mutate(hp: Int16) -> Bool {let o = _accessor.offset(VTOFFSET.hp.v);… in mutate() variable
821 …public func inventory(at index: Int32) -> UInt8 { let o = _accessor.offset(VTOFFSET.inventory.v); … in inventory() variable
823 …public func mutate(inventory: UInt8, at index: Int32) -> Bool { let o = _accessor.offset(VTOFFSET.… in mutate() variable
825 …@discardableResult public func mutate(color: MyGame_Example_Color) -> Bool {let o = _accessor.offs… in mutate() variable
827 …public func test<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFF… in test<T: FlatbuffersInitializable>() variable
[all …]
/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/
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
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
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

12345678910>>...70