Home
last modified time | relevance | path

Searched refs:interned (Results 1 – 25 of 51) sorted by relevance

123

/external/perfetto/src/trace_processor/
Dheap_profile_tracker_unittest.cc272 auto interned = context.storage->InternString( in TEST() local
274 hpt->AddString(kPacket, build_id_ids[i], interned); in TEST()
277 auto interned = context.storage->InternString( in TEST() local
279 hpt->AddString(kPacket, mapping_name_ids[i], interned); in TEST()
282 auto interned = context.storage->InternString( in TEST() local
284 hpt->AddString(kPacket, function_name_ids[i], interned); in TEST()
/external/perfetto/protos/perfetto/trace/
Dtrace_packet.proto118 // Incrementally emitted interned data, valid only on the packet's sequence
120 // usually emit new interned data in the same TracePacket that first refers to
127 // interned data as well as periodically emitted data like
133 // TracePacket. For example, previously emitted interned data will be
149 // When packet loss occurs, incrementally emitted data (including interned
Dperfetto_trace.proto2486 // can only refer to interned data from other packets in the same sequence.
2954 // Incrementally emitted interned data, valid only on the packet's sequence
2956 // usually emit new interned data in the same TracePacket that first refers to
2963 // interned data as well as periodically emitted data like
2969 // TracePacket. For example, previously emitted interned data will be
2985 // When packet loss occurs, incrementally emitted data (including interned
3016 optional uint32 name_iid = 1; // interned DebugAnnotationName.
3081 optional uint32 posted_from_iid = 1; // interned SourceLocation.
3143 // example, interned data entries are emitted as part of a TracePacket and
3178 repeated uint32 category_iids = 3; // interned EventCategoryName.
[all …]
/external/perfetto/protos/perfetto/trace/track_event/
Dtrack_event.proto36 // example, interned data entries are emitted as part of a TracePacket and
71 repeated uint32 category_iids = 3; // interned EventCategoryName.
92 optional uint32 name_iid = 1; // interned LegacyEventName.
Dtask_execution.proto25 optional uint32 posted_from_iid = 1; // interned SourceLocation.
Ddebug_annotation.proto43 optional uint32 name_iid = 1; // interned DebugAnnotationName.
/external/python/cpython3/Tools/c-globals/
Dignored-globals.txt360 interned # slight race on init in PyUnicode_InternInPlace()
429 # interned strings/bytes
/external/python/cpython2/Doc/c-api/
Dstring.rst251 interned string that is the same as *\*string*, it sets *\*string* to it
253 reference count of the interned string object), otherwise it leaves *\*string*
268 been interned, or a new ("owned") reference to an earlier interned string object
Dmarshal.rst17 historical version, version ``1`` (new in Python 2.4) shares interned strings in
/external/python/cpython2/Objects/
Dstringobject.c24 static PyObject *interned; variable
586 if (PyDict_DelItem(interned, op) != 0) in string_dealloc()
4756 if (interned == NULL) { in PyString_InternInPlace()
4757 interned = PyDict_New(); in PyString_InternInPlace()
4758 if (interned == NULL) { in PyString_InternInPlace()
4763 t = PyDict_GetItem(interned, (PyObject *)s); in PyString_InternInPlace()
4770 if (PyDict_SetItem(interned, (PyObject *)s, (PyObject *)s) < 0) { in PyString_InternInPlace()
4817 if (interned == NULL || !PyDict_Check(interned)) in _Py_ReleaseInternedStrings()
4819 keys = PyDict_Keys(interned); in _Py_ReleaseInternedStrings()
4856 PyDict_Clear(interned); in _Py_ReleaseInternedStrings()
[all …]
/external/perfetto/protos/perfetto/trace/interned_data/
Dinterned_data.proto30 // can only refer to interned data from other packets in the same sequence.
/external/python/cpython3/Doc/c-api/
Dmarshal.rst17 historical version, version 1 shares interned strings in the file, and upon
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b2.rst104 String constants with null character no longer interned.
122 String constants now interned recursively in tuples and frozensets.
/external/perfetto/protos/perfetto/config/
Dtrace_config.proto252 // {interned id : string} pairs. Future packets from that data source can then
253 // use the interned ids instead of duplicating the raw string contents. The
Dperfetto_config.proto721 // {interned id : string} pairs. Future packets from that data source can then
722 // use the interned ids instead of duplicating the raw string contents. The
/external/python/cpython3/Doc/library/
Dmarshal.rst105 format, version 1 shares interned strings and version 2 uses a binary format
Dxml.sax.handler.rst77 local names are interned using the built-in intern function.
78 | false: Names are not necessarily interned, although they may be (default).
Dsys.rst841 Enter *string* in the table of "interned" strings and return the interned string
844 interned, and the lookup key is interned, the key comparisons (after hashing)
846 names used in Python programs are automatically interned, and the dictionaries
847 used to hold module, class or instance attributes have interned keys.
/external/python/cpython3/Include/
Dunicodeobject.h283 unsigned int interned:2; member
1022 (((PyASCIIObject *)(op))->state.interned)
/external/python/cpython2/Doc/library/
Dmarshal.rst121 version 1 (added in Python 2.4) shares interned strings and version 2 (added in
Dxml.sax.handler.rst76 local names are interned using the built-in intern function.
77 | false: Names are not necessarily interned, although they may be (default).
Dfunctions.rst1742 Enter *string* in the table of "interned" strings and return the interned string
1745 interned, and the lookup key is interned, the key comparisons (after hashing)
1747 names used in Python programs are automatically interned, and the dictionaries
1748 used to hold module, class or instance attributes have interned keys.
/external/python/cpython3/Objects/
Dunicodeobject.c197 static PyObject *interned = NULL; variable
446 assert(ascii->state.interned == SSTATE_NOT_INTERNED); in _PyUnicode_CheckConsistency()
1136 _PyUnicode_STATE(unicode).interned = 0; in _PyUnicode_New()
1336 _PyUnicode_STATE(unicode).interned = 0; in PyUnicode_New()
1696 assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED); in _PyUnicode_Ready()
1815 if (PyDict_DelItem(interned, unicode) != 0) in unicode_dealloc()
15060 _PyUnicode_STATE(self).interned = 0; in unicode_subtype_new()
15265 if (interned == NULL) { in PyUnicode_InternInPlace()
15266 interned = PyDict_New(); in PyUnicode_InternInPlace()
15267 if (interned == NULL) { in PyUnicode_InternInPlace()
[all …]
Ddictnotes.txt23 About 150 interned strings (as of Py3.3).
/external/python/cpython2/Misc/NEWS.d/
D2.7.13rc1.rst98 String constants with null character no longer interned.
107 String constants now interned recursively in tuples and frozensets.

123