HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2501 - 2525 of 4560) sorted by null

<<101102103104105106107108109110>>

  /external/icu/icu4c/source/test/intltest/
caltest.cpp 50 UnicodeString out; local
55 out += (UnicodeString("") + fieldName((UCalendarDateFields)i) + "=" + cal.get((UCalendarDateFields)i, status) + UnicodeString(" "));
57 out += "[" + UnicodeString(cal.getType()) + "]";
60 out += UnicodeString(" (in DST), zone=");
63 out += UnicodeString(", zone=");
67 out += cal.getTimeZone().getDisplayName(str2);
69 out += UnicodeString(" :","") + d;
71 return out;
716 dow > max) errln(UnicodeString("FAIL: Day of week ") + (int32_t)dow + " out of range");
    [all...]
numrgts.cpp 490 UnicodeString out; local
492 out = nf->format(x, out, pos);
493 logln("0.00159999 formats with 4 fractional digits to " + out);
495 if (out != expected)
510 // TODO: There is not a good way to find out that the creation of this number format has
1205 UnicodeString out; local
1208 logln(UnicodeString("") + x + " formats with 1 fractional digits to " + out); local
1952 UnicodeString out; local
2288 UnicodeString out; local
2292 logln(UnicodeString("Ok: ") + in + " x " + pat + " = " + out); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CompatibilityTest.java 125 System.out.println(type==0 ? "Gregorian" : "Julian");
153 System.out.println("JD +/-" +
477 if (dow < min || dow > max) errln("FAIL: Day of week " + dow + " out of range");
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateTimeGeneratorTest.java 880 Collection<String> out = new LinkedHashSet<String>(); local
    [all...]
MeasureUnitTest.java     [all...]
NumberRegression.java 216 String out = nf.format(x); local
217 logln("0.00159999 formats with 4 fractional digits to " + out);
219 if (!out.equals(expected))
687 String out = df.format(x); local
688 logln("" + x + " formats with 1 fractional digits to " + out);
689 if (!out.equals(expected)) errln("FAIL: Expected " + expected);
1158 String out = nf.format(pi); local
1365 String out = fmt.format(in); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITestMonkey.java 333 //fSets.add(fKatakanaSet); // TODO: work out how to test katakana
711 // while the invalid values shift out and the "this" and
737 // We do this rule out-of-order because the adjustment does
771 // -1 positions out of prevPos yet - loop back to advance the
    [all...]
  /external/jcommander/src/main/java/com/beust/jcommander/
JCommander.java 979 public void usage(String commandName, StringBuilder out) {
980 usage(commandName, out, "");
987 public void usage(String commandName, StringBuilder out, String indent) {
1140 usage(progName.getName(), out, " "); local
    [all...]
  /external/libdrm/intel/
intel_decode.c 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
47 FILE *out; member in struct:drm_intel_decode
89 static FILE *out; variable
100 fprintf(out, "Buffer size too small in %s (%d < %d)\n", \
126 fprintf(out, "ERROR: Decode attempted to continue beyond end of batchbuffer\n");
139 fprintf(out, "0x%08x: %s 0x%08x: %s", offset, parseinfo,
142 vfprintf(out, fmt, va);
280 fprintf(out,
472 fprintf(out, "Bad count in XY_SCANLINES_BLT\n");
484 fprintf(out, "Bad count in XY_SETUP_BLT\n")
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Body.java 21 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
500 * @param torque about the z-axis (out of the screen), usually in N-m.
748 public final void getWorldPointToOut(Vec2 localPoint, Vec2 out) {
749 Transform.mulToOut(m_xf, localPoint, out);
759 Vec2 out = new Vec2(); local
760 getWorldVectorToOut(localVector, out);
761 return out;
764 public final void getWorldVectorToOut(Vec2 localVector, Vec2 out) {
765 Rot.mulToOut(m_xf.q, localVector, out);
768 public final void getWorldVectorToOutUnsafe(Vec2 localVector, Vec2 out) {
779 Vec2 out = new Vec2(); local
795 Vec2 out = new Vec2(); local
815 Vec2 out = new Vec2(); local
834 Vec2 out = new Vec2(); local
    [all...]
  /external/libjpeg-turbo/
jquant2.c 54 * used here have proved out well in experimental comparisons, but better ones
566 * Gems II (James Arvo, ed. Academic Press, 1991). Thomas points out that
1083 int in, out; local
    [all...]
  /external/libmtp/src/
ptp.c 505 /* zero out response packet buffer */
1433 unsigned char *out = NULL, *cur; local
    [all...]
  /external/libpng/
png.c 286 /* Temporarily fake out the longjmp information until we have
343 /* Use the internal API that does not (or at least should not) error out, so
696 png_convert_to_rfc1123_buffer(char out[29], png_const_timep ptime)
702 if (out == NULL)
716 # define APPEND_STRING(string) pos = png_safecat(out, 29, pos, (string))
719 # define APPEND(ch) if (pos < 28) out[pos++] = (ch)
795 * used with your application, print out PNG_LIBPNG_VER_STRING, which
3981 png_uint_16 out = (png_uint_16)(i * 257U); \/* 16-bit output value *\/ local
    [all...]
pngrutil.c 27 png_error(png_ptr, "PNG unsigned integer out of range");
50 png_warning(png_ptr, "PNG fixed point integer out of range");
721 /* Out of memory allocating the buffer */
839 png_chunk_error(png_ptr, "out of place");
930 png_chunk_benign_error(png_ptr, "out of place");
4051 uInt out = ZLIB_IO_MAX; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
loopfilter_sse2.c 1408 unsigned char *out = dst[idx8x8]; local
    [all...]
  /external/libxml2/
encoding.c 81 * Handle an out of memory condition
160 * @out: a pointer to an array of bytes to store the result
161 * @outlen: the length of @out
166 * block of chars out.
173 asciiToUTF8(unsigned char* out, int *outlen,
175 unsigned char* outstart = out;
178 unsigned char* outend = out + *outlen;
183 while ((in < inend) && (out - outstart + 5 < *outlen)) {
186 if (out >= outend)
189 *out++ = c
573 unsigned short* out = (unsigned short*) outb; local
815 unsigned short* out = (unsigned short*) outb; local
2058 xmlBufPtr out; local
2184 xmlBufPtr out; local
2415 xmlBufPtr out; local
    [all...]
xmllint.c 119 XMLLINT_ERR_MEM = 9, /* Out of memory error */
349 fprintf(stderr, "Ran out of memory needs > %d bytes\n", maxmem);
448 * endTimer: call where you want to stop timing and to print out a
1293 char out[40]; local
1300 out[i] = ch[i];
1301 out[i] = 0;
1303 fprintf(stdout, "SAX.characters(%s, %d)\n", out, len);
1335 char out[40]; local
1342 out[i] = ch[i];
1343 out[i] = 0
2553 FILE *out; local
2675 FILE *out; local
2727 FILE *out; local
    [all...]
xmlwriter.c 92 xmlOutputBufferPtr out; /* output buffer */ member in struct:_xmlTextWriter
117 static int xmlOutputBufferWriteBase64(xmlOutputBufferPtr out, int len,
172 * @out: an xmlOutputBufferPtr
175 * NOTE: the @out parameter will be deallocated when the writer is closed
181 xmlNewTextWriter(xmlOutputBufferPtr out)
188 "xmlNewTextWriter : out of memory!\n");
199 "xmlNewTextWriter : out of memory!\n");
210 "xmlNewTextWriter : out of memory!\n");
216 ret->out = out;
249 xmlOutputBufferPtr out; local
285 xmlOutputBufferPtr out; local
324 xmlOutputBufferPtr out; local
    [all...]
  /external/libxml2/python/
libxml.c 567 xmlOutputBufferPtr out; local
572 out = (xmlOutputBufferPtr) PyoutputBuffer_Get(pyobj_out);
574 if (out == NULL) {
579 c_retval = xmlOutputBufferClose(out);
588 xmlOutputBufferPtr out; local
593 out = (xmlOutputBufferPtr) PyoutputBuffer_Get(pyobj_out);
595 c_retval = xmlOutputBufferFlush(out);
    [all...]
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 721 static void output(const MyCustomType &value, void* ctxt, llvm::raw_ostream &out) {
722 out << llvm::format("%d by %d", value.length, value.width);
823 llvm::raw_ostream &out) {
824 out << value.str;
887 // Verify that the block scalar header was written out on the same line
934 static void output(const MyNumber &value, void *, llvm::raw_ostream &out) {
935 out << value;
2121 std::string out; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_ureg.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
331 goto out;
346 out:
415 goto out;
429 out:
490 goto out;
499 goto out;
504 goto out;
517 goto out;
527 out
829 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_INSN, size ); local
894 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_INSN, size ); local
954 union tgsi_any_token *out; local
991 union tgsi_any_token *out, *insn; local
1022 union tgsi_any_token *out = retrieve_token( ureg, DOMAIN_INSN, label_token ); local
1033 union tgsi_any_token *out, *insn; local
1049 union tgsi_any_token *out; local
1063 union tgsi_any_token *out = retrieve_token( ureg, DOMAIN_INSN, insn ); local
1210 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 3); local
1239 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 4); local
1269 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL, 2 ); local
1288 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL, 2 ); local
1309 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 3); local
1335 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 3); local
1360 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL, 5 ); local
1379 union tgsi_any_token *out = get_tokens(ureg, DOMAIN_DECL, 2); local
1577 union tgsi_any_token *out = get_tokens( ureg, local
1590 union tgsi_any_token *out = retrieve_token( ureg, DOMAIN_DECL, 0 ); local
1599 union tgsi_any_token *out = get_tokens( ureg, DOMAIN_DECL, 2 ); local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
479 INFO("BB:%i live set of out blocks:\n", bb->getId());
545 // go through out blocks and delete phi sources that do not originate from
548 BasicBlock *out = BasicBlock::get(ei.getNode()); local
550 for (Instruction *i = out->getPhi(); i && i->op == OP_PHI; i = i->next) {
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
130 fprintf(stderr, " %i: MEM_STREAM0_BUF%i OUT[%i].%s%s%s%s\n", i,
265 uint32_t out = 0; local
267 out |= bytes[(*bytes_read)++] << (8 * i);
269 return out;
618 /* work out gpr and base_chan from index */
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
616 const float *out[4])
627 out[0] = &tile->data.color[y ][x ][0];
628 out[1] = &tile->data.color[y ][x+1][0];
629 out[2] = &tile->data.color[y+1][x ][0];
630 out[3] = &tile->data.color[y+1][x+1][0];
641 const float *out[4])
643 out[0] = get_texel_2d_no_border( samp, addr, x0, y0 );
644 out[1] = get_texel_2d_no_border( samp, addr, x1, y0 );
645 out[2] = get_texel_2d_no_border( samp, addr, x0, y1 )
852 const float *out; local
898 const float *out; local
940 const float *out; local
977 const float *out; local
1015 const float *out; local
1055 const float *out; local
1104 const float *out; local
1144 const float *out; local
    [all...]
  /external/mesa3d/src/glsl/
ast.h 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
367 unsigned out:1; member in struct:ast_type_qualifier::__anon19502::__anon19503
767 * This is factored out of ::hir because some loops have the condition

Completed in 1797 milliseconds

<<101102103104105106107108109110>>