HomeSort by relevance Sort by last modified time
    Searched refs:_m (Results 1 - 25 of 40) sorted by null

1 2

  /device/linaro/bootloader/arm-trusted-firmware/include/lib/el3_runtime/
cpu_data.h 140 #define get_cpu_data(_m) _cpu_data()->_m
141 #define set_cpu_data(_m, _v) _cpu_data()->_m = _v
142 #define get_cpu_data_by_index(_ix, _m) _cpu_data_by_index(_ix)->_m
143 #define set_cpu_data_by_index(_ix, _m, _v) _cpu_data_by_index(_ix)->_m = _v
144 /* ((cpu_data_t *)0)->_m is a dummy to get the sizeof the struct member _m */
    [all...]
  /device/linaro/hikey/hifi/xaf/hifi-dpf/core/
xf-msg.c 76 __xf_message_t *_m; local
79 XF_CHK_ERR(_m = pool->head, NULL);
82 pool->head = (__xf_message_t *)(((xf_message_t *) _m)->next);
85 ((xf_message_t *) _m)->next = NULL;
88 return (xf_message_t *) _m;
94 __xf_message_t *_m = (__xf_message_t *) m; local
97 BUG(!XF_IS_ALIGNED(_m), _x("Corrupted message pointer: %p"), _m);
100 BUG(!xf_msg_from_pool(pool, m) < 0, _x("Bad pool/message: %p/%p"), pool->p, _m);
106 pool->head = _m;
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_batch_cache.h 56 * the loop into _m, we need the &= at the end of the loop to make sure
57 * we don't have stale bits in _m
60 for (uint32_t _m = (mask); _m && ((batch) = (cache)->batches[u_bit_scan(&_m)]); _m &= (mask))
freedreno_util.h 449 for (uint32_t _m = (mask); _m && ({(b) = u_bit_scan(&_m); 1;});)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 52 def _m(self): pass member in class:_C
54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
socket.py 230 for _m in _socketmethods:
231 p = partial(meth,_m)
232 p.__name__ = _m
233 p.__doc__ = getattr(_realsocket,_m).__doc__
235 setattr(_socketobject,_m,m)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 52 def _m(self): pass member in class:_C
54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
pyclbr.py 136 f, fname, (_s, _m, ty) = imp.find_module(module, path)
138 f, fname, (_s, _m, ty) = imp.find_module(module, path + sys.path)
142 f, fname, (_s, _m, ty) = imp.find_module('__init__', [fname])
socket.py 226 for _m in _socketmethods:
227 p = partial(meth,_m)
228 p.__name__ = _m
229 p.__doc__ = getattr(_realsocket,_m).__doc__
231 setattr(_socketobject,_m,m)
  /external/python/cpython2/Lib/
types.py 52 def _m(self): pass member in class:_C
54 UnboundMethodType = type(_C._m) # Same as MethodType
57 MethodType = type(_x._m)
pyclbr.py 138 f, fname, (_s, _m, ty) = imp.find_module(module, path)
140 f, fname, (_s, _m, ty) = imp.find_module(module, path + sys.path)
144 f, fname, (_s, _m, ty) = imp.find_module('__init__', [fname])
socket.py 230 for _m in _socketmethods:
231 p = partial(meth,_m)
232 p.__name__ = _m
233 p.__doc__ = getattr(_realsocket,_m).__doc__
235 setattr(_socketobject,_m,m)
  /external/eigen/test/
bandmatrix.cpp 12 template<typename MatrixType> void bandmatrix(const MatrixType& _m)
18 Index rows = _m.rows();
19 Index cols = _m.cols();
20 Index supers = _m.supers();
21 Index subs = _m.subs();
nesting_ops.cpp 33 template <typename MatrixType> void run_nesting_ops_1(const MatrixType& _m)
35 typename internal::nested_eval<MatrixType,2>::type m(_m);
48 template <typename MatrixType> void run_nesting_ops_2(const MatrixType& _m)
51 Index rows = _m.rows();
52 Index cols = _m.cols();
mapstride.cpp 51 template<int Alignment,typename MatrixType> void map_class_matrix(const MatrixType& _m)
56 Index rows = _m.rows(), cols = _m.cols();
  /external/autotest/site_utils/stats/
apache_error_log_metrics.py 47 def EmitSegfault(_m):
50 @param _m: A regex match object
59 def EmitStart(_m):
62 @param _m: A regex match object
72 def EmitStop(_m, graceful):
75 @param _m: A regex match object
115 def EmitErrorLogLine(_m):
118 @param _m: A regex match object.
  /external/eigen/Eigen/src/Core/
IO.h 22 std::ostream & print_matrix(std::ostream & s, const Derived& _m, const IOFormat& fmt);
127 * print the matrix \a _m to the output stream \a s using the output format \a fmt */
129 std::ostream & print_matrix(std::ostream & s, const Derived& _m, const IOFormat& fmt)
131 if(_m.size() == 0)
137 typename Derived::Nested m = _m;
  /external/gemmlowp/profiling/
instrumentation.h 95 ScopedLock(Mutex* m) : _m(m) { _m->Lock(); }
96 ~ScopedLock() { _m->Unlock(); }
99 Mutex* _m; member in struct:gemmlowp::ScopedLock
  /external/u-boot/drivers/clk/mvebu/
armada-37xx-periph.c 124 #define CLK_FULL(_n, _d, _mux, _r, _s, _m, _t) \
132 .div_mask[0] = _m, \
138 #define CLK_GATE_DIV(_n, _d, _r, _s, _m, _t, _p) \
146 .div_mask[0] = _m, \
159 #define CLK_MUX_DIV(_n, _mux, _r, _s, _m, _t) \
166 .div_mask[0] = _m, \
  /external/tensorflow/tensorflow/python/ops/
matmul_benchmark_test.py 116 for _n, _m, (_transpose_a, _transpose_b) in itertools.product(
121 BuildGraphTest(_n, _m, _k, _transpose_a, _transpose_b, _dtype))
123 RunGraphTest(_n, _m, _k, _transpose_a, _transpose_b, _dtype))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
decoder.py 76 _b=BACKSLASH, _m=STRINGCHUNK.match):
91 chunk = _m(s, end)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
decoder.py 66 _b=BACKSLASH, _m=STRINGCHUNK.match):
81 chunk = _m(s, end)
  /external/python/cpython2/Lib/json/
decoder.py 74 _b=BACKSLASH, _m=STRINGCHUNK.match):
89 chunk = _m(s, end)
  /external/python/cpython3/Lib/json/
decoder.py 70 _b=BACKSLASH, _m=STRINGCHUNK.match):
83 chunk = _m(s, end)
  /external/python/cpython3/Lib/
types.py 33 def _m(self): pass member in class:_C
34 MethodType = type(_C()._m)

Completed in 861 milliseconds

1 2