Home
last modified time | relevance | path

Searched refs:garbage (Results 1 – 25 of 409) sorted by relevance

12345678910>>...17

/external/libxml2/result/
Dent9.rde21 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
26 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
31 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
36 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
41 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
46 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
51 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
56 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
61 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
66 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
[all …]
Dent9.rdr11 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
16 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
21 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
26 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
31 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
36 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
41 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
46 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
51 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
56 2 3 #text 0 1 WE need lot of garbage now to trigger the problem
[all …]
Dent9.sax28 SAX.characters( WE need lot of garbage now to, 50)
33 SAX.characters( WE need lot of garbage now to, 50)
38 SAX.characters( WE need lot of garbage now to, 50)
43 SAX.characters( WE need lot of garbage now to, 50)
48 SAX.characters( WE need lot of garbage now to, 50)
53 SAX.characters( WE need lot of garbage now to, 50)
58 SAX.characters( WE need lot of garbage now to, 50)
63 SAX.characters( WE need lot of garbage now to, 50)
68 SAX.characters( WE need lot of garbage now to, 50)
73 SAX.characters( WE need lot of garbage now to, 50)
[all …]
Dent9.sax228 SAX.characters( WE need lot of garbage now to, 50)
33 SAX.characters( WE need lot of garbage now to, 50)
38 SAX.characters( WE need lot of garbage now to, 50)
43 SAX.characters( WE need lot of garbage now to, 50)
48 SAX.characters( WE need lot of garbage now to, 50)
53 SAX.characters( WE need lot of garbage now to, 50)
58 SAX.characters( WE need lot of garbage now to, 50)
63 SAX.characters( WE need lot of garbage now to, 50)
68 SAX.characters( WE need lot of garbage now to, 50)
73 SAX.characters( WE need lot of garbage now to, 50)
[all …]
/external/libxml2/result/noent/
Dent9.sax227 SAX.characters( WE need lot of garbage now to, 50)
32 SAX.characters( WE need lot of garbage now to, 50)
37 SAX.characters( WE need lot of garbage now to, 50)
42 SAX.characters( WE need lot of garbage now to, 50)
47 SAX.characters( WE need lot of garbage now to, 50)
52 SAX.characters( WE need lot of garbage now to, 50)
57 SAX.characters( WE need lot of garbage now to, 50)
62 SAX.characters( WE need lot of garbage now to, 50)
67 SAX.characters( WE need lot of garbage now to, 50)
72 SAX.characters( WE need lot of garbage now to, 50)
[all …]
/external/e2fsprogs/tests/f_bad_inode_csum/
Dexpect.111 Inode 97 seems to contain garbage. Clear? yes
13 Inode 98 seems to contain garbage. Clear? yes
15 Inode 99 seems to contain garbage. Clear? yes
17 Inode 100 seems to contain garbage. Clear? yes
19 Inode 101 seems to contain garbage. Clear? yes
21 Inode 102 seems to contain garbage. Clear? yes
23 Inode 103 seems to contain garbage. Clear? yes
25 Inode 104 seems to contain garbage. Clear? yes
27 Inode 105 seems to contain garbage. Clear? yes
29 Inode 106 seems to contain garbage. Clear? yes
[all …]
/external/v8/tools/clang/blink_gc_plugin/tests/
Dmake_unique_gc_object.txt1 … 'make_unique<blink::Base>' found; 'Base' is a garbage-collected type. std::unique_ptr cannot hold…
4 …nique<blink::Base [], int>' found; 'Base' is a garbage-collected type. std::unique_ptr cannot hold…
7 …_unique<blink::Derived>' found; 'Derived' is a garbage-collected type. std::unique_ptr cannot hold…
10 …'WrapUnique<blink::Mixin>' found; 'Mixin' is a garbage-collected type. std::unique_ptr cannot hold…
Doptional_gc_object.txt1 …ion of 'Optional<blink::Base>' found; 'Base' is a garbage-collected type. optional cannot hold gar…
4 … 'Optional<blink::Derived>' found; 'Derived' is a garbage-collected type. optional cannot hold gar…
7 …ion of 'Optional<blink::Base>' found; 'Base' is a garbage-collected type. optional cannot hold gar…
/external/python/cpython3/Doc/library/
Dgc.rst5 :synopsis: Interface to the cycle-detecting garbage collector.
12 This module provides an interface to the optional garbage collector. It
20 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
21 gc.garbage for inspection.
28 Enable automatic garbage collection.
33 Disable automatic garbage collection.
56 Set the garbage collection debugging flags. Debugging information will be
85 to be uncollectable (and were therefore moved to the :data:`garbage`
93 Set the garbage collection thresholds (the collection frequency). Setting
126 will only locate those containers which support garbage collection; extension
[all …]
/external/python/cpython3/Lib/test/
Dtest_gc.py170 for obj in gc.garbage:
176 gc.garbage.remove(obj)
196 for obj in gc.garbage:
202 gc.garbage.remove(obj)
229 self.assertEqual(gc.garbage, [])
241 self.assertEqual(len(gc.garbage), 1)
242 obj = gc.garbage.pop()
421 garbagelen = len(gc.garbage)
431 self.assertEqual(len(gc.garbage), garbagelen)
450 garbagelen = len(gc.garbage)
[all …]
/external/python/cpython2/Doc/library/
Dgc.rst6 :synopsis: Interface to the cycle-detecting garbage collector.
11 This module provides an interface to the optional garbage collector. It
19 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
20 gc.garbage for inspection.
27 Enable automatic garbage collection.
32 Disable automatic garbage collection.
59 Set the garbage collection debugging flags. Debugging information will be
79 Set the garbage collection thresholds (the collection frequency). Setting
114 will only locate those containers which support garbage collection; extension
115 types which do refer to other objects but do not support garbage collection will
[all …]
/external/clang/test/Analysis/
Dnil-receiver-undefined-larger-than-voidptr-ret.m86 …iver of message 'longDoubleM' is nil and returns a value of type 'long double' that will be garbage
87 …receiver of message 'longlongM' is nil and returns a value of type 'long long' that will be garbage
88 … The receiver of message 'doubleM' is nil and returns a value of type 'double' that will be garbage
89 …ge 'unsignedLongLongM' is nil and returns a value of type 'unsigned long long' that will be garbage
90 …receiver of message 'longlongM' is nil and returns a value of type 'long long' that will be garbage
92 …receiver of message 'longlongM' is nil and returns a value of type 'long long' that will be garbage
93 …ge 'unsignedLongLongM' is nil and returns a value of type 'unsigned long long' that will be garbage
94 … The receiver of message 'doubleM' is nil and returns a value of type 'double' that will be garbage
95 …receiver of message 'longlongM' is nil and returns a value of type 'long long' that will be garbage
96 …iver of message 'longDoubleM' is nil and returns a value of type 'long double' that will be garbage
Duninit-vals-ps-region.m28 v1.y = z; // expected-warning{{Assigned value is garbage or undefined}}
34 test_unit_aux2(v2.x + v1.y); // expected-warning{{The left operand of '+' is a garbage value}}
39 test_unit_aux2(v1.y + v2.x); // expected-warning{{The right operand of '+' is a garbage value}}
67 …ion of the compound assignment is an uninitialized value. The computed value will also be garbage}}
92 return s2->y; // expected-warning{{Undefined or garbage value returned to caller}}
/external/python/cpython2/Lib/test/
Dtest_gc.py145 for obj in gc.garbage:
151 gc.garbage.remove(obj)
169 for obj in gc.garbage:
175 gc.garbage.remove(obj)
201 self.assertEqual(gc.garbage, [])
213 self.assertEqual(len(gc.garbage), 1)
214 obj = gc.garbage.pop()
381 garbagelen = len(gc.garbage)
391 self.assertEqual(len(gc.garbage), garbagelen)
410 garbagelen = len(gc.garbage)
[all …]
/external/tensorflow/tensorflow/python/util/
Dtf_should_use_test.py55 self.assertFalse(gc.garbage)
69 self.assertFalse(gc.garbage)
86 self.assertFalse(gc.garbage)
94 self.assertFalse(gc.garbage)
108 self.assertFalse(gc.garbage)
127 self.assertFalse(gc.garbage)
/external/deqp/framework/delibs/debase/
DdeSha1.c279 const int garbage = 0xde; in deSha1_selfTest() local
288 deMemset(&hash, garbage, sizeof(deSha1)); in deSha1_selfTest()
300 deMemset(&hash, garbage, sizeof(deSha1)); in deSha1_selfTest()
314 deMemset(&hashA, garbage, sizeof(deSha1)); in deSha1_selfTest()
315 deMemset(&hashB, garbage, sizeof(deSha1)); in deSha1_selfTest()
340 deMemset(&hashA, garbage, sizeof(deSha1)); in deSha1_selfTest()
341 deMemset(&hashB, garbage, sizeof(deSha1)); in deSha1_selfTest()
360 deMemset(&hash, garbage, sizeof(hash)); in deSha1_selfTest()
361 deMemset(&result, garbage, sizeof(result)); in deSha1_selfTest()
/external/bcc/tools/
Dnodegc_example.txt4 ugc traces garbage collection events in high-level languages, including Java,
9 For example, to trace all garbage collection events in a specific Node process:
12 Tracing garbage collections in node process 30012... Ctrl-C to quit.
48 Tracing garbage collections in java process 29907... Ctrl-C to quit.
56 Tracing garbage collections in java process 29907... Ctrl-C to quit.
75 Summarize garbage collection events in high-level languages.
Drubygc_example.txt4 ugc traces garbage collection events in high-level languages, including Java,
9 For example, to trace all garbage collection events in a specific Node process:
12 Tracing garbage collections in node process 30012... Ctrl-C to quit.
48 Tracing garbage collections in java process 29907... Ctrl-C to quit.
56 Tracing garbage collections in java process 29907... Ctrl-C to quit.
75 Summarize garbage collection events in high-level languages.
Dpythongc_example.txt4 ugc traces garbage collection events in high-level languages, including Java,
9 For example, to trace all garbage collection events in a specific Node process:
12 Tracing garbage collections in node process 30012... Ctrl-C to quit.
48 Tracing garbage collections in java process 29907... Ctrl-C to quit.
56 Tracing garbage collections in java process 29907... Ctrl-C to quit.
75 Summarize garbage collection events in high-level languages.
Djavagc_example.txt4 ugc traces garbage collection events in high-level languages, including Java,
9 For example, to trace all garbage collection events in a specific Node process:
12 Tracing garbage collections in node process 30012... Ctrl-C to quit.
48 Tracing garbage collections in java process 29907... Ctrl-C to quit.
56 Tracing garbage collections in java process 29907... Ctrl-C to quit.
75 Summarize garbage collection events in high-level languages.
/external/bcc/tools/lib/
Dugc_example.txt4 ugc traces garbage collection events in high-level languages, including Java,
9 For example, to trace all garbage collection events in a specific Node process:
12 Tracing garbage collections in node process 30012... Ctrl-C to quit.
48 Tracing garbage collections in java process 29907... Ctrl-C to quit.
56 Tracing garbage collections in java process 29907... Ctrl-C to quit.
75 Summarize garbage collection events in high-level languages.
/external/ltp/testcases/cve/
Dstack_clash.c141 volatile char *garbage; in preallocate_stack() local
143 garbage = alloca(required); in preallocate_stack()
144 garbage[0] = garbage[required - 1] = '\0'; in preallocate_stack()
/external/mesa3d/src/compiler/glsl/glcpp/tests/
D126-garbage-after-directive.c1 #ifdef MACRO garbage
4 #ifndef MORE garbage
/external/python/cpython3/Lib/
Dpipes.py208 garbage = []
215 garbage.append(temp)
240 if garbage:
242 for file in garbage:
/external/grpc-grpc/src/core/lib/slice/
Dslice_buffer.cc327 grpc_slice_buffer* garbage) { in grpc_slice_buffer_trim_end() argument
336 if (garbage) { in grpc_slice_buffer_trim_end()
337 grpc_slice_buffer_add_indexed(garbage, slice); in grpc_slice_buffer_trim_end()
343 if (garbage) { in grpc_slice_buffer_trim_end()
344 grpc_slice_buffer_add_indexed(garbage, slice); in grpc_slice_buffer_trim_end()
351 if (garbage) { in grpc_slice_buffer_trim_end()
352 grpc_slice_buffer_add_indexed(garbage, slice); in grpc_slice_buffer_trim_end()

12345678910>>...17