HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1101 - 1125 of 3043) sorted by null

<<41424344454647484950>>

  /external/qemu/distrib/zlib-1.2.8/
crc32.c 21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n")
    [all...]
  /external/skia/bench/
QuadTreeBench.cpp 148 SkIRect out = {0, 0, index + 1, index + 1}; local
149 return out;
153 SkIRect out; local
154 out.fLeft = index % GRID_WIDTH;
155 out.fTop = index / GRID_WIDTH;
156 out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
157 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
158 return out;
162 SkIRect out; local
171 SkIRect out; local
    [all...]
RTreeBench.cpp 159 SkIRect out = {0, 0, index + 1, index + 1}; local
160 return out;
164 SkIRect out; local
165 out.fLeft = index % GRID_WIDTH;
166 out.fTop = index / GRID_WIDTH;
167 out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
168 out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3);
169 return out;
172 SkIRect out; local
181 SkIRect out; local
    [all...]
  /external/skia/experimental/Intersection/
EdgeWalkerPolygon4x4_Test.cpp 37 SkPath path, out; local
63 testSimplifyx(path, false, out, state, pathStr);
67 testSimplifyx(path, true, out, state, pathStr);
132 SkPath path, out; local
154 testSimplifyx(path, false, out, state, pathStr);
158 testSimplifyx(path, true, out, state, pathStr);
227 SkPath path, out; local
249 testSimplifyx(path, false, out, state, pathStr);
253 testSimplifyx(path, true, out, state, pathStr);
EdgeWalkerPolygons_Mismatches.cpp 1608 SkPath path, out; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
Base64.java 389 // We have to shift left 24 in order to flush out the 1's that appear
1171 java.io.OutputStream out = null; local
1197 java.io.OutputStream out = null; local
    [all...]
  /external/smack/src/org/xbill/DNS/
A6Record.java 115 rrToWire(DNSOutput out, Compression c, boolean canonical) {
116 out.writeU8(prefixBits);
121 out.writeByteArray(data, 16 - suffixbytes, suffixbytes);
124 prefix.toWire(out, null, canonical);
Header.java 71 toWire(DNSOutput out) {
72 out.writeU16(getID());
73 out.writeU16(flags);
75 out.writeU16(counts[i]);
80 DNSOutput out = new DNSOutput(); local
81 toWire(out);
82 return out.toByteArray();
159 " is out of range");
171 " is out of range");
193 "is out of range")
    [all...]
KEYBase.java 113 DNSOutput out = new DNSOutput(); local
114 rrToWire(out, null, false);
115 byte [] rdata = out.toByteArray();
153 rrToWire(DNSOutput out, Compression c, boolean canonical) {
154 out.writeU16(flags);
155 out.writeU8(proto);
156 out.writeU8(alg);
158 out.writeByteArray(key);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexDataWriter.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
95 public static void writeInt(OutputStream out, int value) throws IOException {
96 out.write(value);
97 out.write(value >> 8);
98 out.write(value >> 16);
99 out.write(value >> 24);
108 throw new ExceptionWithContext("Short value out of range: %d", value);
116 throw new ExceptionWithContext("Unsigned short value out of range: %d", value);
124 throw new ExceptionWithContext("Unsigned byte value out of range: %d", value);
129 public static void writeUleb128(OutputStream out, int value) throws IOException
    [all...]
  /external/speex/libspeex/
fftwrap.c 30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
45 static int maximize_range(spx_word16_t *in, spx_word16_t *out, spx_word16_t bound, int len)
64 out[i] = SHL16(in[i], shift);
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len)
74 out[i] = PSHR16(in[i], shift);
98 void spx_fft(void *table, float *in, float *out)
100 if (in==out)
106 out[i] = scale*in[i];
111 out[i] = scale*in[i];
113 spx_drft_forward((struct drft_lookup *)table, out);
174 float *out; member in struct:fftw_config
    [all...]
  /external/valgrind/main/drd/tests/
circular_buffer.c 42 int out; member in struct:__anon36502
45 /* Mutex that protects 'out'. */
99 b->out = 0;
104 int out; local
108 out = fetch_and_add(&b->out, 1);
109 if (out >= BUFFER_MAX)
111 fetch_and_add(&b->out, -BUFFER_MAX);
112 out -= BUFFER_MAX;
114 *d = b->buffer[out];
    [all...]
  /external/webp/src/dsp/
alpha_processing.c 147 uint32_t out = argb & 0xff000000u; local
148 out |= Mult(argb >> 0, scale) << 0;
149 out |= Mult(argb >> 8, scale) << 8;
150 out |= Mult(argb >> 16, scale) << 16;
151 ptr[x] = out;
  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator_wrapper.c 45 uint32_t out = (in | mask); local
47 return out;
76 // - out : Binary spectrum.
83 uint32_t out = 0; local
106 out = SetBit(out, i - kBandFirst);
110 return out;
117 uint32_t out = 0; local
136 out = SetBit(out, i - kBandFirst)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tls_common.c 104 u8 *rnd = NULL, *out; local
106 out = os_malloc(len);
107 if (out == NULL)
110 if (tls_connection_prf(sm->ssl_ctx, data->conn, label, 0, out, len) ==
112 return out;
130 keys.server_random_len, out, len))
134 return out;
137 os_free(out);
184 wpa_printf(MSG_DEBUG, "SSL: Sending out %lu bytes "
192 wpa_printf(MSG_DEBUG, "SSL: Sending out %lu bytes
    [all...]
  /external/zlib/src/contrib/inflate86/
inffas86.c 37 Decode literal, length, and distance codes and write out the resulting
54 LEN -- ran out of enough output space or enough available input
83 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */ member in struct:inffast_ar
85 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
112 ar.out = strm->next_out;
113 ar.beg = ar.out - (start - strm->avail_out);
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
141 " movq 32(%%rsp), %%rdi\n" /* rdi = out */
282 " subq 40(%%rsp), %%rax\n" /* nbytes = out - beg */
289 " subq %%r15, %%rsi\n" /* from = out - dist *
    [all...]
  /external/zlib/src/
crc32.c 21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n")
    [all...]
  /external/zlib/src/examples/
zran.c 68 off_t out; /* corresponding offset in uncompressed data */ member in struct:point
90 /* Add an entry to the access point list. If out of memory, deallocate the
93 off_t in, off_t out, unsigned left, unsigned char *window)
125 next->out = out;
141 returns the number of access points on success (>= 1), Z_MEM_ERROR for out
191 /* inflate until out of input, output, or at end of block --
265 while (--ret && here[1].out <= offset)
291 offset -= here->out;
379 fprintf(stderr, "zran: out of memory\n")
    [all...]