HomeSort by relevance Sort by last modified time
    Searched defs:copies (Results 1 - 25 of 44) sorted by null

1 2

  /external/libcups/filter/
gziptoany.c 34 int copies; /* Number of copies */ local
44 _("Usage: %s job-id user title copies options [file]"),
51 * raw queue or raw print file, so we need to make copies...
55 copies = atoi(argv[4]);
57 copies = 1;
65 copies = 1;
79 while (copies > 0)
98 copies --;
pstops.c 77 slow_collate, /* Collate copies by hand? */
87 int copies; /* Number of copies */ member in struct:__anon23060
94 int collate, /* Collate copies? */
229 _("Usage: %s job-id user title copies options [file]"),
737 if (doc->copies != 1 && (!doc->collate || !doc->slow_collate))
744 doc_printf(doc, "%%%%Requirements: numcopies(%d)%s%s\n", doc->copies,
752 doc_printf(doc, "%%RBINumCopies: %d\n", doc->copies);
893 doc->slow_collate ? 1 : doc->copies);
906 * Make additional copies as necessary..
    [all...]
  /external/jline/src/src/main/java/jline/
MultiCompletor.java 48 List[] copies = new List[completors.length]; local
52 copies[i] = new LinkedList(cand);
53 positions[i] = completors[i].complete(buffer, pos, copies[i]);
64 for (int i = 0; i < copies.length; i++) {
66 cand.addAll(copies[i]);
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
RopeByteStringSubstringTest.java 72 int copies = 250; local
75 StringBuilder builder = new StringBuilder(copies * sourceString.length());
77 for (int i = 0; i < copies; ++i) {
102 int copies = 250; local
105 StringBuilder builder = new StringBuilder(copies * sourceString.length());
107 for (int i = 0; i < copies; ++i) {
RopeByteStringTest.java 99 int copies = 250; local
102 StringBuilder builder = new StringBuilder(copies * sourceString.length());
104 for (int i = 0; i < copies; ++i) {
125 int copies = 250; local
128 StringBuilder builder = new StringBuilder(copies * sourceString.length());
130 for (int i = 0; i < copies; ++i) {
  /frameworks/support/samples/SupportVectorDrawableDemos/src/com/example/android/support/vectordrawable/app/
SimpleAnimatedVectorDrawable.java 76 AnimatedVectorDrawableCompat[] copies = new AnimatedVectorDrawableCompat[3]; local
77 copies[0] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable();
78 copies[1] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable();
79 copies[2] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable();
80 copies[0].setAlpha(128);
82 // Expect to see the copies[0, 1] are showing alpha 128, and [2] are showing 255.
83 copies[2].mutate();
84 copies[2].setAlpha(255);
86 addDrawableButtons(container, copies);
  /development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
InsecureSHA1PRNGKeyDerivator.java 77 // HASHCOPY_OFFSET - offset for copy of current hash in "copies" array
78 // EXTRAFRAME_OFFSET - offset for extra frame in "copies" array;
81 // FRAME_OFFSET - offset for frame in "copies" array
116 // Structure of "copies" array
121 private transient int[] copies; field in class:InsecureSHA1PRNGKeyDerivator
197 // remaining bytes are copied into the 21-36 word frame of the "copies" array;
210 copies = new int[2 * FRAME_LENGTH + EXTRAFRAME_OFFSET];
252 System.arraycopy(copies, HASHCOPY_OFFSET, this.seed, HASH_OFFSET,
305 System.arraycopy(seed, HASH_OFFSET, copies, HASHCOPY_OFFSET,
328 // seed or copies array depending on total length after paddin
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 87 // HASHCOPY_OFFSET - offset for copy of current hash in "copies" array
88 // EXTRAFRAME_OFFSET - offset for extra frame in "copies" array;
91 // FRAME_OFFSET - offset for frame in "copies" array
128 // Structure of "copies" array
133 private transient int[] copies; field in class:SHA1PRNG_SecureRandomImpl
161 // remaining bytes are copied into the 21-36 word frame of the "copies" array;
178 copies = new int[2 * FRAME_LENGTH + EXTRAFRAME_OFFSET];
221 System.arraycopy(copies, HASHCOPY_OFFSET, this.seed, HASH_OFFSET,
310 System.arraycopy(seed, HASH_OFFSET, copies, HASHCOPY_OFFSET,
333 // seed or copies array depending on total length after paddin
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_vars_to_ssa.c 8 * and/or sell copies of the Software, and to permit persons to whom the
12 * paragraph) shall be included in all copies or substantial portions of the
49 struct set *copies; member in struct:deref_node
70 * At the moment, we only lower loads, stores, and copies that can be
71 * trivially lowered to loads and stores, i.e. copies with no indirects
75 * otherwise we leave copies with wildcards alone. Since the only derefs
76 * used in these loads, stores, and trivial copies are ones with no
397 if (node->copies == NULL)
398 node->copies = _mesa_set_create(state->dead_ctx, _mesa_hash_pointer,
401 _mesa_set_add(node->copies, copy_instr)
    [all...]
nir_opt_copy_prop_vars.c 8 * and/or sell copies of the Software, and to permit persons to whom the
12 * paragraph) shall be included in all copies or substantial portions of the
79 struct list_head copies; member in struct:copy_prop_var_state
104 list_add(&entry->link, &state->copies);
263 list_for_each_entry(struct copy_entry, iter, &state->copies, link) {
275 list_for_each_entry(struct copy_entry, iter, &state->copies, link) {
287 list_for_each_entry_safe(struct copy_entry, iter, &state->copies, link) {
321 list_for_each_entry_safe(struct copy_entry, iter, &state->copies, link) {
622 list_for_each_entry_safe(struct copy_entry, iter, &state->copies, link)
788 list_inithead(&state.copies);
    [all...]
  /external/toybox/toys/other/
bzcat.c 400 copies to our buffer of decoded symbols (dbuf) now. (The last
516 int count, pos, current, run, copies, outbyte, previous, gotcount = 0; local
551 // Whenever we see 3 consecutive copies of the same byte,
554 copies = current;
558 copies = 1;
563 while (copies--) {
  /external/libchrome/base/
bind_unittest.cc 40 // Particularly important in this test to ensure no copies are made.
52 // Particularly important in this test to ensure no copies are made.
97 // Used for probing the number of copies and moves that occur if a type must be
100 DerivedCopyMoveCounter(int* copies,
104 : copies_(copies),
114 // Used for probing the number of copies and moves in an argument.
117 CopyMoveCounter(int* copies,
121 : copies_(copies),
142 // Probing for copies from coercion.
182 int copies() const function in class:base::__anon22664::CopyMoveCounter
207 int copies() const { return counter_.copies(); } function in class:base::__anon22664::CopyCounter
735 int copies = 0; local
899 int copies = 0; local
977 int copies = 0; local
    [all...]
  /external/clang/test/CXX/drs/
dr3xx.cpp 271 constexpr X(const X &x) : copies(x.copies + 1) {}
272 unsigned copies = 0; member in struct:dr320::X
275 constexpr unsigned g(X x) { return x.copies; }
276 static_assert(f(X()).copies == g(X()) + 1, "expected one extra copy for return value");
    [all...]
  /cts/tests/tests/print/src/android/print/cts/
BasePrintTest.java 656 UiObject copies = getUiDevice().findObject(new UiSelector().resourceId( local
658 copies.setText(Integer.valueOf(newCopies).toString());
667 UiObject copies = getUiDevice().findObject(new UiSelector().resourceId( local
669 return copies.getText();
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
PrintSpoolerService.java 800 private static final String ATTR_COPIES = "copies";
1141 String copies = parser.getAttributeValue(null, ATTR_COPIES); local
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintActivity.java 610 // the user may have used it to type copies or range.
824 Log.w(LOG_TAG, "Cannot apply return value from advanced options activity. Copies " +
2976 int copies = 0; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-xtensa.c 6119 int copies = (rt->unit_num_copies) (rt->data, unit); local
    [all...]
  /external/jline/
jline-1.0.jar 
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.0.CR3/
netty-codec-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.3.Final/
netty-codec-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec/4.1.6.Final/
netty-codec-4.1.6.Final.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 
  /external/guice/extensions/struts2/lib/
core-3.1.1.jar 
  /prebuilts/devtools/tools/lib/
lombok-ast-0.2.3.jar 

Completed in 880 milliseconds

1 2