Home
last modified time | relevance | path

Searched refs:prop (Results 1 – 5 of 5) sorted by relevance

/tools/bpf/bpftool/
Djson_writer.h48 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val);
49 void jsonw_bool_field(json_writer_t *self, const char *prop, bool value);
50 void jsonw_float_field(json_writer_t *self, const char *prop, double num);
51 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num);
52 void jsonw_hu_field(json_writer_t *self, const char *prop, unsigned short num);
53 void jsonw_int_field(json_writer_t *self, const char *prop, int64_t num);
54 void jsonw_null_field(json_writer_t *self, const char *prop);
55 void jsonw_lluint_field(json_writer_t *self, const char *prop,
57 void jsonw_float_field_fmt(json_writer_t *self, const char *prop,
Djson_writer.c244 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val) in jsonw_string_field() argument
246 jsonw_name(self, prop); in jsonw_string_field()
250 void jsonw_bool_field(json_writer_t *self, const char *prop, bool val) in jsonw_bool_field() argument
252 jsonw_name(self, prop); in jsonw_bool_field()
257 void jsonw_float_field(json_writer_t *self, const char *prop, double val) in jsonw_float_field() argument
259 jsonw_name(self, prop); in jsonw_float_field()
265 const char *prop, in jsonw_float_field_fmt() argument
269 jsonw_name(self, prop); in jsonw_float_field_fmt()
273 void jsonw_uint_field(json_writer_t *self, const char *prop, uint64_t num) in jsonw_uint_field() argument
275 jsonw_name(self, prop); in jsonw_uint_field()
[all …]
/tools/memory-model/
Dlinux-kernel.cat79 let prop = [Marked] ; (overwrite & ext)? ; cumul-fence* ;
84 * No fences needed here for prop because relation confined to one process.
86 let hb = [Marked] ; (ppo | rfe | ((prop \ id) & int)) ; [Marked]
94 let pb = prop ; strong-fence ; hb* ; [Marked]
121 let rcu-link = po? ; hb* ; pb* ; prop ; po
146 let rb = prop ; rcu-fence ; hb* ; pb* ; [Marked]
/tools/memory-model/Documentation/
Dexplanation.txt1191 cache coherence. The relation is called prop, and it links two events
1218 8. In this case there is a prop link from P0's write event to its read
1244 case there is a prop link from P0's first read event to its second,
1248 Less trivial examples of prop all involve fences. Unlike the simple
1271 stores. If r1 = 1 and r2 = 0 at the end then there is a prop link
1278 The prop link says that in order to obtain the r1 = 1, r2 = 0 result,
1290 prop relation would give an hb link from the second load to the first.
1295 The formal definition of the prop relation involves a coe or fre link,
1328 If x = 2, r0 = 1, and r2 = 1 after this code runs then there is a prop
1414 Note that this pb link is not included in hb as an instance of prop,
[all …]
/tools/power/pm-graph/
Dsleepgraph.py6269 for prop in val[1:-1].split(','):
6270 p = prop.split('=')