/external/chromium_org/content/browser/appcache/ |
view_appcache_internals_job.cc | 54 void EmitPageStart(std::string* out) { 55 out->append( 70 void EmitPageEnd(std::string* out) { 71 out->append("</body></html>\n"); 76 std::string* out) { 77 out->append("<li>"); 78 out->append(net::EscapeForHTML(label)); 79 out->append(net::EscapeForHTML(data)); 80 out->append("</li>\n"); 84 std::string* out) { 243 false, false, out); local 366 EmitPageStart(out); variable 385 EmitPageEnd(out); variable 487 EmitPageStart(out); variable 499 EmitPageEnd(out); variable 563 EmitPageStart(out); variable 584 EmitPageEnd(out); variable [all...] |
/external/chromium_org/net/base/ |
net_util_unittest.cc | 74 std::string out; local 77 out.append(","); 78 out.append(base::IntToString(static_cast<int>(v[i]))); 80 return out; 966 // filtered out before then.
|
/external/chromium_org/net/dns/ |
dns_config_service_win.cc | 78 DnsSystemSettings::RegString* out) const { 80 out->set = false; 85 LONG result = key_.ReadValue(name, &out->value); 87 out->set = true; 94 DnsSystemSettings::RegDword* out) const { 96 out->set = false; 101 LONG result = key_.ReadValueDW(name, &out->value); 103 out->set = true; 119 scoped_ptr<IP_ADAPTER_ADDRESSES, base::FreeDeleter> out; local 125 out.reset(static_cast<PIP_ADAPTER_ADDRESSES>(malloc(len))) [all...] |
dns_transaction_unittest.cc | 28 std::string out; local 29 EXPECT_TRUE(DNSDomainFromDot(dotted, &out)); 30 return out; 575 // Second attempt times out. 593 // Attempt receives mismatched response but times out because only one attempt [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
OutputHLSL.cpp | 280 TInfoSinkBase &out = mHeader; local 316 out << mStructureHLSL->structsHeader(); 318 out << mUniformHLSL->uniformsHeader(mOutputType, mReferencedUniforms); 319 out << mUniformHLSL->interfaceBlocksHeader(mReferencedInterfaceBlocks); 323 out << "#define ANGLE_USES_DISCARD_REWRITING" << "\n"; 328 out << "#define ANGLE_USES_NESTED_BREAK" << "\n"; 336 out << "// Varyings\n"; 337 out << varyings; 338 out << "\n"; 347 out << "static " + TypeString(variableType) + " out_" + variableName + ArrayString(variableType) 1370 TInfoSinkBase &out = mBody; local 1474 TInfoSinkBase &out = mBody; local 1817 TInfoSinkBase &out = mBody; local 2280 TInfoSinkBase &out = mBody; local 2366 TInfoSinkBase &out = mBody; local 2432 TInfoSinkBase &out = mBody; local 2528 TInfoSinkBase &out = mBody; local 2730 TInfoSinkBase &out = mBody; local 2806 TInfoSinkBase &out = mBody; local 2826 TInfoSinkBase &out = mBody; local [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/cipher/ |
e_aes.c | 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 119 void bsaes_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t length, 121 void bsaes_ctr32_encrypt_blocks(const uint8_t *in, uint8_t *out, size_t len, 130 void bsaes_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t length, 135 void bsaes_ctr32_encrypt_blocks(const uint8_t *in, uint8_t *out, size_t len, 147 void vpaes_encrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key); 148 void vpaes_decrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key); 150 void vpaes_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t length, 165 void vpaes_encrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key) { 168 void vpaes_decrypt(const uint8_t *in, uint8_t *out, const AES_KEY *key) 484 EVP_CIPHER_CTX *out = ptr; local [all...] |
/external/chromium_org/third_party/boringssl/src/ssl/ |
t1_enc.c | 34 * The word 'cryptographic' can be left out if the rouines from the library 49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 101 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 157 unsigned char *out, int olen) 216 if (!EVP_DigestSignFinal(&ctx,out,&j)) 218 out+=j; 230 memcpy(out,A1,olen); 721 unsigned char ad[13], *seq, *in, *out, nonce[16]; local 762 out = rec->data; 778 memcpy(out, ad, aead->variable_nonce_len) [all...] |
/external/chromium_org/third_party/icu/source/common/ |
rbbi.cpp | 850 // to carry out this operation 933 // out-of-range indexes are never boundary positions 1715 int32_t out = 0; local [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cnmdptst.c | 639 UChar *out = NULL; local 650 out=(UChar*)malloc(sizeof(UChar) * (lneed+1) ); 652 unum_formatDouble(nf, x, out, lneed+1, &pos, &status); 658 /*printf("%f format with %d fraction digits to %s\n", x, maxFractionDigits, austrdup(out) );*/ 661 if (u_strcmp(out, res) != 0) 664 if(out != NULL) { 665 free(out); 1037 UChar *out = NULL; local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
convtest.cpp | 610 // Unfortunately, there are no good, direct set methods for finding out whether there are strings 619 UnicodeString out; local 624 diffSet.toPattern(out, TRUE); 625 if(out.length()>100) { 626 out.replace(100, 0x7fffffff, ellipsis, LENGTHOF(ellipsis)); 630 errln(out); 636 diffSet.toPattern(out, TRUE); 637 if(out.length()>100) { 638 out.replace(100, 0x7fffffff, ellipsis, LENGTHOF(ellipsis)); 642 errln(out); [all...] |
/external/chromium_org/third_party/icu/source/test/perf/howExpensiveIs/ |
howExpensiveIs.cpp | 32 FILE *out = NULL; variable 103 out=fopen(outName,"w"); 104 if(out==NULL) { 110 fprintf(out, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n"); 111 fprintf(out, "<tests icu=\"%s\">\n", U_ICU_VERSION); 112 fprintf(out, "<!-- %s -->\n", U_COPYRIGHT_STRING); 127 if(out!=NULL) { 129 udbg_writeIcuInfo(out); 131 fprintf(out, "</tests>\n"); 132 fclose(out); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
stun_unittest.cc | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 747 // But when written out, the buffers should look different. 879 rtc::ByteBuffer out; local 908 rtc::ByteBuffer out; local 937 rtc::ByteBuffer out; local 967 rtc::ByteBuffer out; local 1055 rtc::ByteBuffer out; local 1078 rtc::ByteBuffer out; local 1402 rtc::ByteBuffer out; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/ |
vp9_itrans16_dspr2.c | 1222 int32_t out; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
vp9_dct.c | 71 tran_low_t *out = intermediate; local 101 out[0] = fdct_round_shift(temp1); 102 out[2] = fdct_round_shift(temp2); 105 out[1] = fdct_round_shift(temp1); 106 out[3] = fdct_round_shift(temp2); 110 out += 4; 112 // Setup in/out for next pass. 114 out = output; 178 tran_low_t out[4 * 4]; local 179 tran_low_t *outptr = &out[0] 363 tran_low_t *out = intermediate; local 614 tran_low_t out[64]; local 1013 tran_low_t out[256]; local [all...] |
/external/chromium_org/third_party/libxml/src/ |
uri.c | 984 "xmlCreateURI: out of memory\n"); 1014 "xmlSaveUri: out of memory\n"); 1027 "xmlSaveUri: out of memory\n"); 1040 "xmlSaveUri: out of memory\n"); 1056 "xmlSaveUri: out of memory\n"); 1079 "xmlSaveUri: out of memory\n"); 1096 "xmlSaveUri: out of memory\n"); 1122 "xmlSaveUri: out of memory\n"); 1138 "xmlSaveUri: out of memory\n"); 1153 "xmlSaveUri: out of memory\n") 1405 xmlChar *out; local 1485 char *cur, *out; local 1684 char *ret, *out; local 1747 unsigned int len, out; local 1961 int ret, len, indx, cur, out; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_setup_tri.c | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 701 int out = 0; local 707 out |= (planeout >> 31); 711 if (out) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_driver.h | 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 120 struct nv50_ir_varying out[PIPE_MAX_SHADER_OUTPUTS]; member in struct:nv50_ir_prog_info
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_wm_fp.c | 23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 165 printf("%s: out of temporaries\n", __FILE__); 249 * and brw_wm_pass*.c wants to optimize them out by shuffling references around 293 /* Emit the out calculations, and hold onto the results. Use 604 /* This will get optimized out in general, but it ensures that we 683 struct prog_instruction *out; local 695 out = emit_op(c, OPCODE_MOV, 701 out->SrcReg[0].Negate = NEGATE_NONE; 702 out->SrcReg[0].Abs = 1; 1090 struct prog_instruction *out; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vertex_generic.c | 22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 53 GLfloat *out = (GLfloat *)v; local 56 out[0] = vp[0] * in[0] + vp[12]; 57 out[1] = vp[5] * in[1] + vp[13]; 58 out[2] = vp[10] * in[2] + vp[14]; 59 out[3] = in[3]; 65 GLfloat *out = (GLfloat *)v; local 68 out[0] = vp[0] * in[0] + vp[12]; 69 out[1] = vp[5] * in[1] + vp[13]; 70 out[2] = vp[10] * in[2] + vp[14] 77 GLfloat *out = (GLfloat *)v; local 89 GLfloat *out = (GLfloat *)v; local 101 GLfloat *out = (GLfloat *)v; local 112 GLfloat *out = (GLfloat *)v; local 123 GLfloat *out = (GLfloat *)v; local 134 GLfloat *out = (GLfloat *)v; local 144 GLfloat *out = (GLfloat *)v; local 158 GLfloat *out = (GLfloat *)(v); local 169 GLfloat *out = (GLfloat *)(v); local 180 GLfloat *out = (GLfloat *)(v); local 191 GLfloat *out = (GLfloat *)(v); local 202 GLfloat *out = (GLfloat *)(v); local 219 GLfloat *out = (GLfloat *)(v); local 229 GLfloat *out = (GLfloat *)(v); local 239 GLfloat *out = (GLfloat *)(v); local 250 GLfloat *out = (GLfloat *)(v); local 259 GLfloat *out = (GLfloat *)(v); local 268 GLfloat *out = (GLfloat *)(v); local [all...] |
/external/chromium_org/third_party/opus/src/src/ |
opus_demo.c | 25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 243 short *in, *out; local 596 out = (short*)malloc(max_frame_size*channels*sizeof(short)); 671 fprintf(stderr, "Ran out of input, " 781 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 1); 785 output_samples = opus_decode(dec, data[1-toggle], len[1-toggle], out, output_samples, 0); 788 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 0); 802 s=out[i+(skip*channels)]; [all...] |
/external/chromium_org/third_party/ots/src/ |
ots.cc | 87 bool (*serialise)(ots::OTSStream *out, ots::OpenTypeFile *file); 614 OutputTable out; local 616 out.tag = tag; 617 out.offset = output->Tell(); 621 head_table_offset = out.offset; 628 if (end_offset <= out.offset) { 633 out.length = end_offset - out.offset; 639 out.chksum = output->chksum(); 640 out_tables.push_back(out); [all...] |
/external/chromium_org/third_party/re2/re2/ |
prog.h | 89 void InitAlt(uint32 out, uint32 out1); 90 void InitByteRange(int lo, int hi, int foldcase, uint32 out); 91 void InitCapture(int cap, uint32 out); 92 void InitEmptyWidth(EmptyOp empty, uint32 out); 94 void InitNop(uint32 out); 100 int out() { return out_opcode_>>3; } function in class:re2::Prog::Inst 110 return p->inst(out())->opcode() == kInstByteRange; 130 out_opcode_ = (out()<<3) | opcode; 133 void set_out(int out) { 134 out_opcode_ = (out<<3) | opcode() [all...] |
re2.cc | 398 string out; local 404 out.append(p, vec[0].begin() - p); 408 out.append(p, 1); 412 re.Rewrite(&out, rewrite, vec, nvec); 422 out.append(p, ep - p); 423 swap(out, *str); 430 string *out) { 439 out->clear(); 440 return re.Rewrite(out, rewrite, vec, nvec); 565 // Use DFAs to find exact location of match, filter out non-matches [all...] |
/external/chromium_org/third_party/speex/libspeex/ |
nb_celp.c | 28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 1103 spx_word16_t *out = (spx_word16_t*)vout; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/ |
tasm.c | 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 274 /* Default to yasm.out if no obj filename specified */ 275 obj_filename = yasm__xstrdup("yasm.out"); 280 obj_filename = yasm__xstrdup("yasm.out"); 284 "yasm.out"); 870 * If output filename would be identical to input (same extension out as in), 879 char *out, *outext; local 889 out = yasm_xmalloc(outlen); 891 strcpy(out, orig); 892 outext = strrchr(out, '.') [all...] |