Searched refs:pointer (Results 1 - 25 of 26) sorted by relevance

12

/gem5/src/mem/slicc/ast/
H A DFormalParamAST.py32 def __init__(self, slicc, type_ast, ident, default = None, pointer = False):
37 self.pointer = pointer
55 if self.pointer or str(type) == "TBE" or (
H A DLocalVariableAST.py34 def __init__(self, slicc, type_ast, ident, pointer = False):
38 self.pointer = pointer
63 if self.pointer or str(type) == "TBE" or (
H A DObjDeclAST.py32 def __init__(self, slicc, type_ast, ident, pairs, rvalue, pointer):
38 self.pointer = pointer
/gem5/tests/test-progs/gpu-hello/bin/x86/linux/
H A Dgpu-hello-kernel.asm4 %code_size%code_in%key_arr%msg_out%chars_decodedAMD RTI$ARGSTART:__OpenCL_read_kernel_kernel$,version:3:1:1044<device:genericDL uniqueid:1024T\memory:private:0dlmemory:region:0t|memory:local:16��!value:__global_offset_0:u64:1:1:0��"value:__global_offset_1:u64:1:1:16��"value:__global_offset_2:u64:1:1:32��2pointer:__printf_buffer:u8:1:1:48:uav:7:1:RW:0:0:0��!value:__vqueue_pointer:u64:1:1:64��"value:__aqlwrap_pointer:u64:1:1:80��value:code_size:u64:1:1:96��+pointer:code_in:u8:1:1:112:uav:7:1:RW:0:0:0 ,pointer:key_arr:u32:1:1:128:uav:7:4:RW:0:0:0+pointer:msg_out:u8:1:1:144:uav:7:1:RW:0:0:0$,2pointer:chars_decoded:u32:1:1:160:uav:7:4:RW:0:0:04< function:1:0DLmemory:64bitABIT\ privateid:8dlenqueue_kernel:0t|kernel_index:0��reflection:0:size_t��reflection:1:size_t��reflection:2:size_t��reflection:3:size_t��reflection:4:size_t��reflection:5:size_t��reflection:6:size_t��reflection:7:char* reflection:8:int*reflection:9:char*$,reflection:10:int*4<"ARGEND:__OpenCL_read_kernel_kernelDL%read_kernel_lcount"@__OpenCL_read_kernel_kernel_entry// BB#0:T\hpx� ����� ������,4 HPX@BB0_2dl// BB#1:t� ����� ��� ��� (08@BB0_4DL6// BB#3: // %.preheader T\d lt| ������� �����(@BB0_50 8@HP`@BB0_7t|// BB#6:������� hsa_code  <HT```` |�������� (4@ � � � �  ( H | � � ( \ � � � 4 p � � �   , L p � � �  $ H l � � �   0X  rl Fx G�"  � G�"  � G�"  u� G�" G�" E � T  H  �  , W<" G@  T  d Gt E � T ��  �  � E   1  0  H@   +T  J`  Ux " �  �  H�  l  W� " T � �  G� " M�  I�  J�  �  g� �$ hsa_operand 0T 0` 0T 0� 0T 0� 0T 0� 0T 0� 0T 0 0T 04 0T 0T 0T 0� 0T 0� 0T 0� 0T 04 0T 0h 0T 0� 0T 0� 0T 0 0T 0@ 0T 0| 0T 0� 0T 0� 0T 0� 0T 0 0T 08 0T 0X 0T 0| 0T 0� 0T 0� 0T 0� 0T 0  0T 00 0T 0T 0T 0x 0T 0� 0T 0� 0T 0�
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-message.h81 // can stream a NULL char pointer to it in the former, but not in the
83 // class hides this difference by treating a NULL char pointer as
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
135 // Streams a pointer value to this object.
138 // stream a pointer to a Message, this definition will be used as it
140 // [temp.func.order].) If you stream a non-pointer, then the
143 // The reason for this overload is that streaming a NULL pointer to
149 inline Message& operator <<(T* const& pointer) { // NOLINT argument
150 if (pointer
153 *ss_ << pointer; local
206 StreamHelper(internal::true_type , T* pointer) argument
210 *ss_ << pointer; local
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_factory_constructors.py18 y1 = m.TestFactory1(tag.pointer)
27 y2 = m.TestFactory2(tag.pointer, 7)
36 y3 = m.TestFactory3(tag.pointer, 42)
98 a = m.TestFactory3(tag.pointer, tag.TF4, 4)
102 c = m.TestFactory3(tag.pointer, tag.TF5, 6)
110 e = m.TestFactory4(tag.pointer, tag.TF4, 8)
151 d = m.TestFactory6(tag.alias, tag.pointer, 4)
154 e = m.TestFactory6(tag.base, tag.pointer, 5)
157 f = m.TestFactory6(tag.base, tag.alias, tag.pointer, 6)
188 # Return Class by pointer, move
[all...]
H A Dtest_factory_constructors.cpp119 // Return via pointer:
123 // pointer again
127 // pointer:
135 // pointer:
149 MAKE_TAG_TYPE(pointer);
166 .def(py::init(&TestFactoryHelper::construct1_string)) // raw function pointer
203 .def(py::init(c4a)) // pointer
309 // The two-argument version: first the factory pointer overload.
330 // wrapped factory function must return a compatible pointer, holder, or value
332 // incompatible factory function pointer retur
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-more-actions.h48 // function pointer or a functor. Invoke(f) can be used as an
55 // pointer or a functor).
167 // Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
168 // mock function to *pointer.
171 AND_1_VALUE_PARAMS(pointer)) {
172 *pointer = ::testing::get<k>(args);
175 // Action SaveArgPointee<k>(pointer) saves the value pointed to
176 // by the k-th (0-based) argument of the mock function to *pointer.
179 AND_1_VALUE_PARAMS(pointer)) {
180 *pointer
[all...]
H A Dgmock-matchers.h976 // pointer that is NULL.
996 // pointer that is not NULL.
1132 // Accepts pointer types, particularly:
1192 // Accepts pointer types, particularly:
1239 // Accepts pointer types, particularly:
1285 // Accepts pointer types, particularly:
1331 // Accepts pointer types, particularly:
2040 // Implements the Pointee(m) matcher for matching a pointer whose
2041 // pointee matches matcher m. The pointer can be either raw or smart.
2048 // used as a matcher for any pointer typ
2081 MatchAndExplain(Pointer pointer, MatchResultListener* listener) const argument
3652 ElementsAreArray( const T* pointer, size_t count) argument
3695 UnorderedElementsAreArray(const T* pointer, size_t count) argument
[all...]
/gem5/ext/systemc/src/sysc/qt/md/
H A Dhppa_b.s46 ; Call the procedure `b_null' with function pointer in a register.
54 stw %rp,-20(%sp) ; save return-pointer to frame-marker
63 copy %mrp,%rp ; remember the return-pointer
103 ldw -20(%sp),%rp ; restore return-pointer
118 stw %rp,-20(%sp) ; save return-pointer to frame-marker
141 ldw -20(%sp),%rp ; restore return-pointer
H A Dhppa.s92 ldw -148(%sp),%rp ; restore return-pointer
135 ldw -28(%sp),%rp ; restore return-pointer
H A Dksr1.s31 # and a pointer to a constant block. The address of function `f' is
41 # Note, by the way, that a pointer to a function is passed as a
42 # pointer to the constant area, and the constant area has the text
174 # being started. Blocked threads have a pointer to qt_restore$TXT on
175 # the top of their stacks; manufactured stacks have a pointer to qt_start$TXT
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1345 // When you upcast (that is, cast a pointer from type Foo to type
1347 // always succeed. When you downcast (that is, cast a pointer from
1349 // how do you know the pointer is really of type SubclassOfFoo? It
1386 // Downcasts the pointer of type Base to Derived.
1572 // pthread_create() accepts a pointer to a function type with the C linkage.
1854 T* pointer() { return GetOrCreateValue(); } function in class:testing::internal::ThreadLocal
1855 const T* pointer() const { return GetOrCreateValue(); } function in class:testing::internal::ThreadLocal
1856 const T& get() const { return *pointer(); }
1857 void set(const T& value) { *pointer() = value; }
1867 T* pointer() { retur function in class:testing::internal::ThreadLocal::ValueHolder
2047 T* pointer() { return GetOrCreateValue(); } function in class:testing::internal::ThreadLocal
2048 const T* pointer() const { return GetOrCreateValue(); } function in class:testing::internal::ThreadLocal
2059 T* pointer() { return &value_; } function in class:testing::internal::ThreadLocal::ValueHolder
2166 T* pointer() { return &value_; } function in class:testing::internal::ThreadLocal
2167 const T* pointer() const { return &value_; } function in class:testing::internal::ThreadLocal
[all...]
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py413 reference, pointer, array):
419 reference, pointer, array: bools
427 self.pointer = pointer
440 if self.pointer:
487 reference = pointer = array = False
502 reference, pointer, array))
515 reference = pointer = array = False
518 reference = pointer = array = False
520 pointer
[all...]
H A Dgmock_class.py82 if node.return_type.pointer:
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.h276 typedef typename base_type::pointer pointer; typedef in class:sc_core::sc_vector_iter
315 pointer operator->() const
454 typedef typename iterator::pointer pointer; typedef in class:sc_core::sc_vector_assembly
456 typedef typename const_iterator::pointer const_pointer;
569 sc_object* object_cast( pointer p ) const
/gem5/ext/googletest/googletest/test/
H A Dgtest-port_test.cc999 bar.pointer();
1005 EXPECT_EQ(thread_local_string.pointer(), &(thread_local_string.get()));
1009 EXPECT_EQ(thread_local_string.pointer(), &(thread_local_string.get()));
1017 EXPECT_EQ(thread_local_string.pointer(), const_thread_local_string.pointer());
1020 EXPECT_EQ(thread_local_string.pointer(), const_thread_local_string.pointer());
H A Dgtest_unittest.cc502 // pointer literal.
511 // pointer literal.
1630 // C++Builder's putenv only stores a pointer to its parameter; we have to
1635 // Because putenv stores a pointer to the string buffer, we can't delete the
3687 // Tests ASSERT_EQ(NULL, pointer).
3706 // treated as a null pointer by the compiler, we need to make sure
4413 // Tests EXPECT_EQ(NULL, pointer).
4431 // treated as a null pointer by the compiler, we need to make sure
4553 // Tests using StreamableToString() on a non-char pointer.
4560 // Tests using StreamableToString() on a NULL non-char pointer
5166 operator <<(std::ostream& os, const Base* pointer) argument
5190 operator <<(std::ostream& os, const MyTypeInUnnamedNameSpace* pointer) argument
5215 operator <<(std::ostream& os, const MyTypeInNameSpace1* pointer) argument
5241 operator <<(std::ostream& os, const namespace2::MyTypeInNameSpace2* pointer) argument
[all...]
/gem5/src/base/
H A Dcircular_queue.hh167 using pointer = value_type*;
251 pointer operator->()
517 /** Circularly increase the head pointer.
518 * By increasing the head pointer we are removing elements from
535 /** Circularly decrease the tail pointer. */
/gem5/src/mem/slicc/symbols/
H A DStateMachine.py69 if param.pointer:
329 if param.pointer:
532 if param.pointer:
683 assert(param.pointer)
689 assert(param.pointer)
930 assert(param.pointer)
/gem5/src/systemc/ext/utils/
H A Dsc_vector.hh322 typedef typename BaseType::pointer pointer; typedef in class:sc_core::sc_vector_iter
423 pointer
/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h176 /// The default constructor creates a handle with a ``nullptr``-valued pointer
178 /// Creates a ``handle`` from the given raw Python object pointer
181 /// Return the underlying ``PyObject *`` pointer
243 Resets the internal pointer to ``nullptr`` without without decreasing the
612 using pointer = typename Policy::pointer;
619 pointer operator->() const { return **this; }
651 /// Lightweight iterator policy using just a simple pointer: see ``PySequence_Fast_ITEMS``
657 using pointer = arrow_proxy<const handle>;
678 using pointer
[all...]
/gem5/system/alpha/console/
H A Ddbmentry.S91 /* If stack pointer was 0, then this is CPU0*/
199 mov a1, t1 # cpu rpb pointer (virtual)
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc890 // pointer instead.
1226 const int* const pointer = a; local
1227 EXPECT_THAT(make_tuple(pointer, 2), Contains(1));
1228 EXPECT_THAT(make_tuple(pointer, 2), Not(Contains(Gt(3))));
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h631 // set_up_tc: pointer to the function that sets up the test case
632 // tear_down_tc: pointer to the function that tears down the test case
642 // set_up_tc: pointer to the function that sets up the test case
643 // tear_down_tc: pointer to the function that tears down the test case
743 return *(gtest_trace_stack_.pointer());
753 // Returns a pointer to the parsed --gtest_internal_run_death_test
761 // Returns a pointer to the current death test factory.

Completed in 100 milliseconds

12