HomeSort by relevance Sort by last modified time
    Searched full:duplicate (Results 201 - 225 of 3919) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/iproute2/tc/
q_netem.c 37 " [ duplicate PERCENT [CORRELATION]]\n" \
224 explain1("duplicate loss argument\n");
365 } else if (matches(*argv, "duplicate") == 0) {
367 if (get_percent(&opt.duplicate, *argv)) {
368 explain1("duplicate");
374 explain1("duplicate");
587 if (qopt.duplicate) {
588 fprintf(f, " duplicate %s",
589 sprint_percent(qopt.duplicate, b1));
  /external/e2fsprogs/e2fsck/
problem.h 320 /* Duplicate or bad blocks in use! */
573 /* Pass 1B: Rescan for duplicate/bad blocks */
576 /* Duplicate/bad block(s) header */
579 /* Duplicate/bad block(s) in inode */
582 /* Duplicate/bad block(s) end */
601 /* Pass 1D: Reconciling duplicate blocks */
604 /* File has duplicate blocks */
607 /* List of files sharing duplicate blocks */
613 /* Report of how many duplicate/bad inodes */
619 /* Clone duplicate/bad blocks? *
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 157 /// the emitted table format, handling any duplicate operands it encounters
158 /// and then one non-duplicate.
164 /// times to reflect possible duplicate
167 /// set of non-duplicate ('physical') operands.
169 /// @param numPhysicalOperands - The number of non-duplicate operands in the
173 /// duplicate, and of what.
  /external/llvm/lib/CodeGen/
TailDuplication.cpp 1 //===-- TailDuplication.cpp - Duplicate blocks into predecessors' tails ---===//
209 /// TailDuplicateAndUpdate - Tail duplicate the block and cleanup.
313 /// branched to and do not fall through. Tail-duplicate their instructions
424 /// DuplicateInstruction - Duplicate a TailBB instruction to PredBB and update
432 MachineInstr *NewMI = TII->duplicate(MI, MF);
487 // There could be duplicate phi source entries. FIXME: Should sdisel
507 // If we didn't duplicate a bb into a particular predecessor, we
544 /// shouldTailDuplicate - Determine if it is profitable to duplicate this block.
549 // Only duplicate blocks that end with unconditional branches.
553 // Don't try to tail-duplicate single-block loops
    [all...]
  /external/oprofile/libop/
op_events.c 143 parse_error("duplicate name: tag");
148 parse_error("duplicate type: tag");
161 parse_error("duplicate default: tag");
463 parse_error("duplicate name: tag");
472 parse_error("duplicate event: tag");
478 parse_error("duplicate counters: tag");
487 parse_error("duplicate ext: tag");
492 parse_error("duplicate um: tag");
501 parse_error("duplicate minimum: tag");
765 parse_error("duplicate event tag")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
ByteBufferTest.java 248 // duplicate's contents should be the same as buf
249 ByteBuffer duplicate = buf.duplicate();
250 assertNotSame(buf, duplicate);
251 assertEquals(buf.position(), duplicate.position());
252 assertEquals(buf.limit(), duplicate.limit());
253 assertEquals(buf.isReadOnly(), duplicate.isReadOnly());
254 assertEquals(buf.isDirect(), duplicate.isDirect());
255 assertEquals(buf.order(), duplicate.order());
256 assertContentEquals(buf, duplicate);
459 ByteBuffer duplicate = buf.duplicate(); local
474 ByteBuffer duplicate = buf.duplicate(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
history_ui_unittest.cc 50 // Tests that the MergeDuplicateResults method correctly removes duplicate
71 // Test that a duplicate URL on the next day is not removed.
  /external/chromium_org/chrome/browser/ui/webui/options/
edit_dictionary_browsertest.js 92 // notification, but ignores duplicate add notifications.
115 // notification, but ignores duplicate remove notifications.
  /external/chromium_org/chrome/renderer/net/
predictor_queue.h 7 // some duplicate strings may be removed (i.e., the string won't really be
8 // pushed *if* the class happens to notice that a duplicate is already in the
  /external/chromium_org/components/omnibox/
answers_cache_unittest.cc 104 // Test that duplicate entries update recency.
109 // Test duplicate do not evict other entries. LV should still be in cache.
  /external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/
HandleMock.java 202 * @see SharedBufferHandle#duplicate(SharedBufferHandle.DuplicateOptions)
205 public SharedBufferHandle duplicate(DuplicateOptions options) { method in class:HandleMock
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
InvalidHandle.java 120 * @see SharedBufferHandle#duplicate(SharedBufferHandle.DuplicateOptions)
123 public SharedBufferHandle duplicate(DuplicateOptions options) { method in class:InvalidHandle
SharedBufferHandle.java 89 * |SharedBufferHandle#duplicate|
143 public SharedBufferHandle duplicate(DuplicateOptions options); method in interface:SharedBufferHandle
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_subpixel_8t_intrin_avx2.c 79 // duplicate only the first 16 bits (first and second byte)
83 // duplicate only the second 16 bits (third and forth byte)
87 // duplicate only the third 16 bits (fifth and sixth byte)
91 // duplicate only the forth 16 bits (seventh and eighth byte)
324 // duplicate only the first 16 bits (first and second byte)
328 // duplicate only the second 16 bits (third and forth byte)
332 // duplicate only the third 16 bits (fifth and sixth byte)
336 // duplicate only the forth 16 bits (seventh and eighth byte)
  /external/chromium_org/third_party/mesa/src/
SConstruct 128 duplicate = 0, # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
144 duplicate = 0 # http://www.scons.org/doc/0.97/HTML/scons-user/x2261.html
  /external/chromium_org/third_party/skia/gm/
copy_config.py 6 """Utility to duplicate a config in some subset of our GM expectation files.
88 help=('Config we want to duplicate.'))
  /external/chromium_org/third_party/skia/include/core/
SkStream.h 93 virtual SkStreamRewindable* duplicate() const { return NULL; } function in class:SkStream
133 /** SkStreamRewindable is a SkStream for which rewind and duplicate are required. */
137 virtual SkStreamRewindable* duplicate() const SK_OVERRIDE = 0;
143 virtual SkStreamSeekable* duplicate() const SK_OVERRIDE = 0;
155 virtual SkStreamAsset* duplicate() const SK_OVERRIDE = 0;
165 virtual SkStreamMemory* duplicate() const SK_OVERRIDE = 0;
255 virtual SkStreamAsset* duplicate() const SK_OVERRIDE;
327 virtual SkMemoryStream* duplicate() const SK_OVERRIDE;
  /external/clang/test/Parser/
MicrosoftExtensions.c 24 /* But duplicate __forceinline causes warning. */
25 void __forceinline __forceinline pr8264_4(void) { /* expected-warning{{duplicate '__forceinline' declaration specifier}} */
  /external/emma/core/java12/com/vladium/jcd/cls/
IInterfaceCollection.java 58 * Appends a new superinterface pointer to the collection. No duplicate checks are made.
68 * No duplicate checks are made. It is the responsibility of the caller to
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IDeclaredExceptionTable.java 60 * Appends a new exception class pointer to the collection. No duplicate checks
71 * No duplicate checks are made. It is the responsibility of the caller to
IExceptionHandlerTable.java 58 * Adds a new Exception_info descriptor to this collection. No duplicate
68 * Replaces the Exception_info descriptor at a given offset. No duplicate
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
CollectionFeature.java 78 * with duplicate elements instead of collapsing them to a single element or
79 * including duplicate instances in the collection.
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapCreationTester.java 106 fail("Should reject duplicate null elements at creation");
117 fail("Should reject duplicate non-null elements at creation");
SetCreationTester.java 73 fail("Should reject duplicate null elements at creation");
85 fail("Should reject duplicate non-null elements at creation");
  /external/libvpx/libvpx/vp8/common/arm/neon/
loopfiltersimplehorizontaledge_neon.asm 95 vdup.s8 q1, r3 ; duplicate blim
113 vdup.s8 q1, r3 ; duplicate mblim

Completed in 661 milliseconds

1 2 3 4 5 6 7 891011>>