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

<<81828384858687888990>>

  /external/chromium_org/net/socket/
socket_test_util.cc 328 MockRead out = MockRead(ASYNC, ERR_IO_PENDING); local
330 out = StaticSocketDataProvider::GetNextRead();
331 read_in_progress_ = (out.result == ERR_IO_PENDING);
332 return out;
479 // Continue to consume data until all data has run out, or the stopped_ flag
768 unsigned char* out,
770 memset(out, 'A', outlen);
774 int MockClientSocket::GetTLSUniqueChannelBinding(std::string* out) {
775 out->assign(MockClientSocket::kTlsUnique);
    [all...]
  /external/chromium_org/net/spdy/
spdy_framer.cc 1221 WriteZ(base::StringPiece(buf, length), clas, out); local
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
sslcon.c 851 PRUint8 * out; local
871 out = ss->sec.writeBuf.buf;
876 out[0] = 0x80 | MSB(amount);
877 out[1] = LSB(amount);
878 PORT_Memcpy(&out[2], in, amount);
881 rv = ssl_DefSend(ss, out, amount + 2, flags & ~ssl_SEND_FLAG_MASK);
886 /* Return short write if some data already went out... */
895 if (ssl_SaveWriteData(ss, out + rv, amount + 2 - rv)
922 PRUint8 * out; local
949 out = ss->sec.writeBuf.buf
1023 PRUint8 * out; \/* begining of output buffer. *\/ local
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
OutputHLSL.cpp 335 // must pad out after matrices and arrays, where HLSL usually allows itself room to pack stuff
558 TInfoSinkBase &out = mHeader; local
680 out << *structDeclaration;
685 out << *constructor;
690 out << "#define ANGLE_USES_DISCARD_REWRITING" << "\n";
695 out << "#define ANGLE_USES_NESTED_BREAK" << "\n";
703 out << "// Varyings\n";
704 out << varyings;
705 out << "\n";
715 out << "static " + typeString(variableType) + " out_" + variableName + arrayString(variableType)
1760 TInfoSinkBase &out = mBody; local
1864 TInfoSinkBase &out = mBody; local
2257 TInfoSinkBase &out = mBody; local
2770 TInfoSinkBase &out = mBody; local
2856 TInfoSinkBase &out = mBody; local
2922 TInfoSinkBase &out = mBody; local
3018 TInfoSinkBase &out = mBody; local
3220 TInfoSinkBase &out = mBody; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
numrgts.cpp 478 UnicodeString out; local
480 out = nf->format(x, out, pos);
481 logln("0.00159999 formats with 4 fractional digits to " + out);
483 if (out != expected)
498 // TODO: There is not a good way to find out that the creation of this number format has
1192 UnicodeString out; local
1195 logln(UnicodeString("") + x + " formats with 1 fractional digits to " + out); local
1933 UnicodeString out; local
2269 UnicodeString out; local
2273 logln(UnicodeString("Ok: ") + in + " x " + pat + " = " + out); local
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.cc 751 const CompactionState::Output& out = compact->outputs[i]; local
752 pending_outputs_.erase(out.number);
765 CompactionState::Output out; local
766 out.number = file_number;
767 out.smallest.Clear();
768 out.largest.Clear();
769 compact->outputs.push_back(out);
847 const CompactionState::Output& out = compact->outputs[i]; local
850 out.number, out.file_size, out.smallest, out.largest)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine2.cc 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
49 // TODO(pbos): Move codecs out of modules (webrtc:3070).
380 // TODO(pbos): Figure out whether this can be removed.
392 // TODO(pbos): Probe encoder factory to figure out that the codec is supported
412 // transmitted |out| is set with the best settings supported. Aspect ratio will
417 VideoCodec* out) {
418 assert(out != NULL);
453 out->id = requested.id;
454 out->name = requested.name;
455 out->preference = requested.preference
754 std::stringstream out; local
786 std::stringstream out; local
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
dec_neon.c 53 uint8x8x4_t out; local
54 INIT_VECTOR4(out, zero, zero, zero, zero);
55 out = vld4_lane_u8(src + 0 * stride, out, 0);
56 out = vld4_lane_u8(src + 1 * stride, out, 1);
57 out = vld4_lane_u8(src + 2 * stride, out, 2);
58 out = vld4_lane_u8(src + 3 * stride, out, 3)
    [all...]
enc_neon.c 85 int16x8x2_t* const out) {
90 *out = vzipq_s16(tmp0.val[0], tmp0.val[1]);
256 uint32x4_t out = { 0, 0, 0, 0 }; local
257 out = vld1q_lane_u32((const uint32_t*)(src + 0 * BPS), out, 0);
258 out = vld1q_lane_u32((const uint32_t*)(src + 1 * BPS), out, 1);
259 out = vld1q_lane_u32((const uint32_t*)(src + 2 * BPS), out, 2);
260 out = vld1q_lane_u32((const uint32_t*)(src + 3 * BPS), out, 3)
566 int32x4x4_t out = Transpose4x4(rows); local
889 int16_t out[16]; local
    [all...]
enc_sse2.c 63 int16_t out[16]; local
66 VP8FTransform(ref + VP8DspScan[j], pred + VP8DspScan[j], out);
68 // Convert coefficients to bin (within out[]).
71 const __m128i out0 = _mm_loadu_si128((__m128i*)&out[0]);
72 const __m128i out1 = _mm_loadu_si128((__m128i*)&out[8]);
73 // sign(out) = out >> 15 (0x0000 if positive, 0xffff if negative)
76 // abs(out) = (out ^ sign) - sign
81 // v = abs(out) >>
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmllint.c 119 XMLLINT_ERR_MEM = 9, /* Out of memory error */
344 fprintf(stderr, "Ran out of memory needs > %d bytes\n", maxmem);
443 * endTimer: call where you want to stop timing and to print out a
1286 char out[40]; local
1293 out[i] = ch[i];
1294 out[i] = 0;
1296 fprintf(stdout, "SAX.characters(%s, %d)\n", out, len);
1328 char out[40]; local
1335 out[i] = ch[i];
1336 out[i] = 0
2521 FILE *out; local
2635 FILE *out; local
2685 FILE *out; local
    [all...]
xmlwriter.c 84 xmlOutputBufferPtr out; /* output buffer */ member in struct:_xmlTextWriter
109 static int xmlOutputBufferWriteBase64(xmlOutputBufferPtr out, int len,
164 * @out: an xmlOutputBufferPtr
167 * NOTE: the @out parameter will be deallocated when the writer is closed
173 xmlNewTextWriter(xmlOutputBufferPtr out)
180 "xmlNewTextWriter : out of memory!\n");
191 "xmlNewTextWriter : out of memory!\n");
202 "xmlNewTextWriter : out of memory!\n");
208 ret->out = out;
241 xmlOutputBufferPtr out; local
277 xmlOutputBufferPtr out; local
316 xmlOutputBufferPtr out; local
    [all...]
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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::__anon17871::__anon17872
767 * This is factored out of ::hir because some loops have the condition
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
ffvertex_prog.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
383 _mesa_problem(NULL, "%s: out of temporaries\n", __FILE__);
519 * matrix out in one go:
723 struct ureg out = register_output(p, output); local
724 emit_op1(p, OPCODE_MOV, out, 0, register_input(p, input));
908 * lift it out of the main loop. That way the programs created here
1423 struct ureg out = register_output(p, VERT_RESULT_TEX0 + i); local
1532 struct ureg out = register_output(p, VERT_RESULT_PSIZ); local
1568 struct ureg out = register_output(p, VERT_RESULT_PSIZ); local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
apps.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
290 void program_name(char *in, char *out, int size)
331 out[i]=p[i]-'A'+'a';
333 out[i]=p[i];
335 out[n]='\0';
339 void program_name(char *in, char *out, int size)
355 strncpy(out,p,size-1);
358 out[size-1]='\0'
1649 BIO *out = NULL; local
1902 BIO *out = BIO_new(BIO_s_file()); local
2738 unsigned char *out; local
    [all...]
ca.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
168 " -out file - Where to put the output file(s)\n",
304 BIO *in=NULL,*out=NULL,*Sout=NULL,*Cout=NULL; local
433 else if (strcmp(*argv,"-out") == 0)
714 out=BIO_new(BIO_s_file());
717 if ((in == NULL) || (out == NULL) || (Sout == NULL) || (Cout == NULL))
945 BIO_set_fp(out,stdout,BIO_NOCLOSE|BIO_FP_TEXT); /* cannot fail */
949 out = BIO_push(tmpbio, out);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn1t.h 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
662 typedef int ASN1_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
666 typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval,
672 typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
733 BIO *out; member in struct:ASN1_PRINT_ARG_st
741 BIO *out; member in struct:ASN1_STREAM_ARG_st
863 int i2d_##fname(stname *a, unsigned char **out) \
865 return ASN1_item_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname));\
869 int i2d_##stname##_NDEF(stname *a, unsigned char **out) \
871 return ASN1_item_ndef_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(stname));
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
asn1t.h 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
662 typedef int ASN1_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
666 typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval,
672 typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
733 BIO *out; member in struct:ASN1_PRINT_ARG_st
741 BIO *out; member in struct:ASN1_STREAM_ARG_st
863 int i2d_##fname(stname *a, unsigned char **out) \
865 return ASN1_item_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname));\
869 int i2d_##stname##_NDEF(stname *a, unsigned char **out) \
871 return ASN1_item_ndef_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(stname));
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
expr.c 753 /* Figure out where to write the new Expr structure. */
1913 char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); local
    [all...]
shell.c 404 FILE *out; /* Write results here */ member in struct:callback_data
417 char outfile[FILENAME_MAX]; /* Filename for *out */
477 static void output_hex_blob(FILE *out, const void *pBlob, int nBlob){
480 fprintf(out,"X'");
481 for(i=0; i<nBlob; i++){ fprintf(out,"%02x",zBlob[i]); }
482 fprintf(out,"'");
488 static void output_quoted_string(FILE *out, const char *z){
495 fprintf(out,"'%s'",z);
497 fprintf(out,"'");
501 fprintf(out,"''");
607 FILE *out = p->out; local
    [all...]
vdbeaux.c 15 ** But that file was getting too big so this subroutines were split out.
106 ** If an out-of-memory error occurs while resizing the array, return
2333 FILE *out = fopen("vdbe_profile.out", "a"); local
    [all...]

Completed in 744 milliseconds

<<81828384858687888990>>