Home
last modified time | relevance | path

Searched refs:stolen (Results 1 – 25 of 84) sorted by relevance

1234

/external/eigen/unsupported/test/
Dcxx11_runqueue.cpp35 std::vector<int> stolen; in test_basic_runqueue() local
36 VERIFY_IS_EQUAL(0u, q.PopBackHalf(&stolen)); in test_basic_runqueue()
37 VERIFY_IS_EQUAL(0u, stolen.size()); in test_basic_runqueue()
66 VERIFY_IS_EQUAL(1u, q.PopBackHalf(&stolen)); in test_basic_runqueue()
67 VERIFY_IS_EQUAL(1u, stolen.size()); in test_basic_runqueue()
68 VERIFY_IS_EQUAL(7, stolen[0]); in test_basic_runqueue()
70 stolen.clear(); in test_basic_runqueue()
83 VERIFY_IS_EQUAL(2u, q.PopBackHalf(&stolen)); in test_basic_runqueue()
84 VERIFY_IS_EQUAL(2u, stolen.size()); in test_basic_runqueue()
85 VERIFY_IS_EQUAL(10, stolen[0]); in test_basic_runqueue()
[all …]
/external/mesa3d/src/gallium/drivers/ilo/core/
Dilo_builder.h84 unsigned stolen; member
99 unsigned stolen; member
201 if (unlikely(offset + size > writer->size - writer->stolen)) { in ilo_builder_writer_reserve_bottom()
203 offset + size + writer->stolen, true)) { in ilo_builder_writer_reserve_bottom()
209 assert(offset + size <= writer->size - writer->stolen); in ilo_builder_writer_reserve_bottom()
227 offset = (writer->size - writer->stolen - size) & ~(alignment - 1); in ilo_builder_writer_reserve_top()
230 size > writer->size - writer->stolen)) { in ilo_builder_writer_reserve_top()
232 align(writer->used, alignment) + size + writer->stolen, true)) { in ilo_builder_writer_reserve_top()
237 offset = (writer->size - writer->stolen - size) & ~(alignment - 1); in ilo_builder_writer_reserve_top()
238 assert(offset + size <= writer->size - writer->stolen); in ilo_builder_writer_reserve_top()
[all …]
Dilo_builder.c108 writer->stolen = 0; in ilo_builder_writer_reset()
128 writer->stolen = 0; in ilo_builder_writer_discard()
181 writer->stolen = 0; in ilo_builder_writer_alloc_and_map()
217 if (writer->stolen && !err) { in ilo_builder_writer_unmap()
218 const unsigned offset = writer->size - writer->stolen; in ilo_builder_writer_unmap()
219 err = intel_bo_pwrite(writer->bo, offset, writer->stolen, in ilo_builder_writer_unmap()
244 if (writer->stolen) in ilo_builder_writer_grow()
478 snapshot->stolen = writer->stolen; in ilo_builder_batch_snapshot()
495 writer->stolen = snapshot->stolen; in ilo_builder_batch_restore()
/external/pdfium/core/fxcrt/
Dmaybe_owned_unittest.cpp127 std::unique_ptr<PseudoDeletable> stolen; in TEST() local
132 stolen = ptr.Release(); in TEST()
134 EXPECT_EQ(ptr, stolen); in TEST()
/external/python/cpython3/Doc/c-api/
Dgen.rst36 A reference to *frame* is stolen by this function. The argument must not be
43 A reference to *frame* is stolen by this function. The *frame* argument
Dcoro.rst33 A reference to *frame* is stolen by this function. The *frame* argument
Dbytes.rst179 the old value of *bytes* will be stolen. If the new object cannot be
/external/python/cpython3/Lib/test/
Dtokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt5 # Arbitrary encoded utf-8 text (stolen from test_doctest2.py).
Dtokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt6 # Arbitrary encoded utf-8 text (stolen from test_doctest2.py).
Dtokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt7 # Arbitrary encoded utf-8 text (stolen from test_doctest2.py).
Dtokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt7 # Arbitrary encoded utf-8 text (stolen from test_doctest2.py).
Dtokenize_tests.txt2 # Large bits stolen from test_grammar.py.
/external/python/cpython2/Doc/c-api/
Dgen.rst37 reference to *frame* is stolen by this function. The parameter must not be
/external/python/cpython2/Lib/test/
Dtokenize_tests.txt2 # Large bits stolen from test_grammar.py.
/external/e2fsprogs/lib/et/test_cases/
Dheimdal2.et58 # password quality basically stolen from OV libkadm5
/external/dtc/
DREADME.license30 This does mean that libfdt code could be "stolen" - say, included in a
/external/libogg/
Dogg.m43 # Shamelessly stolen from Owen Taylor and Manish Singh
/external/libopus/
Dopus.m43 # Shamelessly stolen from Jack Moffitt (libogg) who
/external/python/cpython2/Doc/library/
Dwave.rst7 .. Documentations stolen from comments in file.
Dpopen2.rst154 .. Example explanation and suggested work-arounds substantially stolen
/external/iproute2/doc/actions/
Difb-README95 action order 2: mirred (Egress Redirect to device ifb0) stolen
/external/python/cpython3/Modules/
D_json.c1484 _steal_accumulate(_PyAccu *acc, PyObject *stolen) in _steal_accumulate() argument
1487 int rval = _PyAccu_Accumulate(acc, stolen); in _steal_accumulate()
1488 Py_DECREF(stolen); in _steal_accumulate()
/external/python/cpython3/Doc/library/
Dwave.rst8 .. Documentations stolen from comments in file.
/external/python/cpython2/Modules/
D_json.c2001 _steal_list_append(PyObject *lst, PyObject *stolen) in _steal_list_append() argument
2004 int rval = PyList_Append(lst, stolen); in _steal_list_append()
2005 Py_DECREF(stolen); in _steal_list_append()
/external/icu/icu4c/source/samples/ufortune/resources/
Droot.txt187 "A cynic is a person searching for an honest man, with a stolen

1234