/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbSymUid.cpp | 69 CompilandIdRepr repr; in PdbSymUid() local 70 ::memset(&repr, 0, sizeof(repr)); in PdbSymUid() 71 repr.modi = cid.modi; in PdbSymUid() 72 repr.tag = static_cast<uint64_t>(PdbSymUidKind::Compiland); in PdbSymUid() 73 m_repr = repr_cast<uint64_t>(repr); in PdbSymUid() 77 CompilandSymIdRepr repr; in PdbSymUid() local 78 ::memset(&repr, 0, sizeof(repr)); in PdbSymUid() 79 repr.modi = csid.modi; in PdbSymUid() 80 repr.offset = csid.offset; in PdbSymUid() 81 repr.tag = static_cast<uint64_t>(PdbSymUidKind::CompilandSym); in PdbSymUid() [all …]
|
H A D | PdbSymUid.h | 96 PdbSymUid(uint64_t repr) : m_repr(repr) {} in PdbSymUid() argument
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | atomic_gcc_sync.h | 89 type volatile repr; \ 98 type result = a->repr; \ 111 a->repr = val; \ 125 type old = a->repr; \ 126 if (__sync_bool_compare_and_swap(&a->repr, old, val)) { \ 137 type prev = __sync_val_compare_and_swap(&a->repr, *expected, \ 151 type prev = __sync_val_compare_and_swap(&a->repr, *expected, \ 168 return __sync_fetch_and_add(&a->repr, val); \ 174 return __sync_fetch_and_sub(&a->repr, val); \ 180 return __sync_fetch_and_and(&a->repr, val); \ [all …]
|
H A D | atomic_gcc_atomic.h | 42 type repr; \ 49 __atomic_load(&a->repr, &result, atomic_enum_to_builtin(mo)); \ 56 __atomic_store(&a->repr, &val, atomic_enum_to_builtin(mo)); \ 63 __atomic_exchange(&a->repr, &val, &result, \ 73 return __atomic_compare_exchange(&a->repr, expected, &desired, \ 83 return __atomic_compare_exchange(&a->repr, expected, &desired, \ 97 return __atomic_fetch_add(&a->repr, val, \ 104 return __atomic_fetch_sub(&a->repr, val, \ 111 return __atomic_fetch_and(&a->repr, val, \ 118 return __atomic_fetch_or(&a->repr, val, \ [all …]
|
/freebsd/tests/sys/opencrypto/ |
H A D | cryptotest.py | 100 raise RuntimeError('unknown mode: %r' % repr(mode)) 143 self.assertEqual(rct, ct, repr(data)) 144 self.assertEqual(rtag, tag, repr(data)) 163 repr(data)) 180 raise RuntimeError('unknown mode: %r' % repr(mode)) 212 raise RuntimeError('unknown mode: %r' % repr(mode)) 275 repr(binascii.hexlify(out)) + " Expected: " + \ 276 repr(data) + " on " + cname) 322 " Actual: " + repr(binascii.hexlify(r)) + \ 323 " Expected: " + repr(data) + \ [all …]
|
H A D | cryptodev.py | 421 print('line:', repr(line)) 426 raise ValueError('already present: %r' % repr(f)) 436 raise ValueError('not all fields found: %r' % repr(remain)) 474 print('line:', repr(line)) 480 raise ValueError('already present: %r' % repr(f)) 488 raise ValueError('already present: %r' % repr(f)) 504 print('line:', repr(line)) 514 raise ValueError('already present: %r' % repr(f)) 544 print('line:', repr(line)) 549 raise ValueError('already present: %r' % repr(f)) [all …]
|
/freebsd/contrib/arm-optimized-routines/math/tools/ |
H A D | remez.jl | 223 @debug("gausselim", "matrix=", repr(M)) 224 @debug("gausselim", "vector=", repr(V)) 269 @debug("gausselim", "matrix=", repr(M)) 270 @debug("gausselim", "vector=", repr(V)) 364 @debug("leastsquares", "sums=", repr(sums)) 396 @debug("leastsquares", "matrix=", repr(matrix)) 397 @debug("leastsquares", "vector=", repr(vector)) 402 @debug("leastsquares", "all_coeffs=", repr(all_coeffs)) 623 @debug("equaldev", "n=", n, " d=", d, " coords=", repr(coords)) 653 @debug("equaldev", "matrix=", repr(matrix)) [all …]
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | gtest_skip_check_output_test.py | 54 repr(OUTPUT),
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | PythonDataObjects.cpp | 187 PyObject *repr = PyObject_Repr(m_py_obj); in Repr() local 188 if (!repr) in Repr() 190 return PythonString(PyRefType::Owned, repr); in Repr() 969 PyObject *repr = PyObject_Repr(m_exception); in PythonException() local 970 if (repr) { in PythonException() 971 m_repr_bytes = PyUnicode_AsEncodedString(repr, "utf-8", nullptr); in PythonException() 975 Py_XDECREF(repr); in PythonException()
|
/freebsd/contrib/lib9p/pytest/ |
H A D | pfod.py | 173 arg_list = repr(tuple(field_names)).replace("'", "")[1:-1],
|
H A D | p9conn.py | 122 return repr(self) 475 return repr(path)
|
/freebsd/cddl/contrib/opensolaris/lib/pyzfs/common/ |
H A D | util.py | 55 (self.__class__.__name__, repr(self.__dict__))
|
/freebsd/tools/tools/shlib-compat/ |
H A D | shlib-compat.py | 238 return repr(self.symbols.values())
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64SystemOperands.td | 387 class ExactFPImm<string name, string repr, bits<4> enum > : SearchableTable { 393 string Repr = repr;
|
/freebsd/contrib/jemalloc/src/ |
H A D | ctl.c | 3423 pactivep = (size_t *)&(arena->nactive.repr); in experimental_arenas_i_pactivep_ctl()
|