/external/oprofile/libregex/tests/ |
regex_test.cpp | 30 static void do_test(istream& fin) 38 while (getline(fin, last)) { 70 ifstream fin(argv[i]); 71 do_test(fin); 74 ifstream fin("mangled-name"); 75 if (!fin) { 80 do_test(fin);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/ |
zcgunzip.cc | 55 FileInputStream fin(STDIN_FILENO); 56 GzipInputStream in(&fin);
|
/external/protobuf/src/google/protobuf/testing/ |
zcgunzip.cc | 55 FileInputStream fin(STDIN_FILENO); 56 GzipInputStream in(&fin);
|
/external/speex/libspeex/ |
kiss_fft.h | 81 * fin should be f[0] , f[1] , ... ,f[nfft-1] 86 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout); 91 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
|
/frameworks/base/tools/preload/ |
PrintPsTree.java | 34 FileInputStream fin = new FileInputStream(args[0]); local 36 new BufferedInputStream(fin));
|
/external/chromium_org/third_party/opus/src/src/ |
repacketizer_demo.c | 61 FILE *fin, *fout; local 94 fin = fopen(argv[argc-2], "r"); 95 if(fin==NULL) 104 fclose(fin); 117 err = fread(ch, 1, 4, fin); 122 if (feof(fin)) 127 fclose(fin); 133 err = fread(ch, 1, 4, fin); 135 err = fread(packets[i], 1, len[i], fin); 136 if (feof(fin)) [all...] |
/external/chromium_org/third_party/WebKit/public/platform/ |
WebSocketHandle.h | 62 virtual void send(bool fin, MessageType, const char* data, size_t /* size */) = 0;
|
/external/chromium_org/third_party/opus/src/celt/ |
opus_custom_demo.c | 46 FILE *fin, *fout; local 89 fin = fopen(inFile, "rb"); 90 if (!fin) 100 fclose(fin); 108 fclose(fin); 116 fclose(fin); 131 while (!feof(fin)) 134 err = fread(in, sizeof(short), frame_size*channels, fin); 135 if (feof(fin)) 192 fclose(fin); [all...] |
/external/chromium_org/net/quic/ |
reliable_quic_stream.cc | 119 void ReliableQuicStream::WriteOrBufferData(StringPiece data, bool fin) { 120 DCHECK(data.size() > 0 || fin); 124 fin_buffered_ = fin; 128 consumed_data = WritevData(&iov, 1, fin, NULL); 132 // If there's unconsumed data or an unconsumed fin, queue it. 134 (fin && !consumed_data.fin_consumed)) { 142 bool fin = false; local 146 fin = true; 149 QuicConsumedData consumed_data = WritevData(&iov, 1, fin, NULL); 151 fin == consumed_data.fin_consumed) [all...] |
/external/chromium_org/net/spdy/ |
spdy_websocket_test_util.h | 56 bool fin); 62 bool fin);
|
buffered_spdy_framer.cc | 66 bool fin, 76 control_frame_fields_->fin = fin; 83 bool fin) { 89 control_frame_fields_->fin = fin; 95 bool fin) { 101 control_frame_fields_->fin = fin; 138 control_frame_fields_->fin, [all...] |
buffered_spdy_framer.h | 42 bool fin, 48 bool fin, 53 bool fin, 59 bool fin) = 0; 71 bool fin) = 0; 131 bool fin, 133 virtual void OnSynReply(SpdyStreamId stream_id, bool fin) OVERRIDE; 134 virtual void OnHeaders(SpdyStreamId stream_id, bool fin) OVERRIDE; 143 bool fin) OVERRIDE; 158 bool fin) OVERRIDE 252 bool fin; member in struct:net::BufferedSpdyFramer::ControlFrameFields [all...] |
/external/chromium_org/net/tools/quic/ |
quic_spdy_client_stream.h | 46 bool fin); 49 void SendBody(const std::string& data, bool fin);
|
quic_spdy_client_stream.cc | 69 bool fin) { 73 bool send_fin_with_headers = fin && body.empty(); 79 WriteOrBufferData(body, fin); 111 void QuicSpdyClientStream::SendBody(const string& data, bool fin) { 112 return WriteOrBufferData(data, fin);
|
/external/libvpx/libvpx/vpx_ports/ |
arm_cpudetect.c | 140 FILE *fin; 151 fin = fopen("/proc/cpuinfo", "r"); 152 if (fin != NULL) { 157 while (fgets(buf, 511, fin) != NULL) { 185 fclose(fin);
|
/cts/tests/tests/os/src/android/os/cts/ |
FileAccessPermissionTest.java | 160 FileInputStream fin = null; local 168 fin = new FileInputStream(file); 170 assertEquals(i + 1, fin.read()); 172 fin.close(); 173 fin = null; 186 if (fin != null) { 188 fin.close();
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
_stream_hybi.py | 60 def __init__(self, fin=1, rsv1=0, rsv2=0, rsv3=0, 62 self.fin = fin 102 def create_header(opcode, payload_length, fin, rsv1, rsv2, rsv3, mask): 115 if (fin | rsv1 | rsv2 | rsv3) & ~1: 116 raise ValueError('FIN bit and Reserved bit parameter must be 0 or 1') 120 first_byte = ((fin << 7) 144 frame.opcode, len(frame.payload), frame.fin, 150 message, opcode=common.OPCODE_BINARY, fin=1, mask=False, frame_filters=[]): 153 frame = Frame(fin=fin, opcode=opcode, payload=message [all...] |
/external/srec/tools/dictTest/ |
dictTest.c | 64 void doInputTestPhonemes(SR_Vocabulary *vocab, PFile* fin, FILE* fout) 77 while(!pfeof(fin)) 79 pfgets(line, MAX_LINE_LENGTH, fin); 124 PFile* fin = 0; local 297 if ((fin = pfopen(wordfile,"r")) == NULL) 302 while (pfgets(phrase, MAX_LINE_LENGTH, fin)!=NULL) 311 if ((fin = pfopen(testfilename,"r")) == NULL) 317 doInputTestPhonemes(vocab, fin, fout); 345 if(fin) 346 pfclose(fin); [all...] |
/external/chromium_org/third_party/zlib/contrib/minizip/ |
minizip.c | 176 FILE * fin = fopen64(filenameinzip,"rb"); local 179 if (fin==NULL) 188 size_read = (int)fread(buf,1,size_buf,fin); 190 if (feof(fin)==0) 202 if (fin) 203 fclose(fin); 385 FILE * fin; local 450 fin = fopen64(filenameinzip,"rb"); 451 if (fin==NULL) 462 size_read = (int)fread(buf,1,size_buf,fin); [all...] |
/external/zlib/src/contrib/minizip/ |
minizip.c | 189 FILE * fin = FOPEN_FUNC(filenameinzip,"rb"); local 193 if (fin==NULL) 202 size_read = (int)fread(buf,1,size_buf,fin); 204 if (feof(fin)==0) 216 if (fin) 217 fclose(fin); 398 FILE * fin; local 463 fin = FOPEN_FUNC(filenameinzip,"rb"); 464 if (fin==NULL) 475 size_read = (int)fread(buf,1,size_buf,fin); [all...] |
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
vignette.rsh | 49 const float4 fin = convert_float4(in); 55 fout.rgb = fin.rgb * lumen; 56 fout.w = fin.w;
|
vignette_approx.rsh | 49 const float4 fin = convert_float4(in); 55 fout.rgb = fin.rgb * lumen; 56 fout.w = fin.w;
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
vignette.rsh | 49 const float4 fin = convert_float4(in); 55 fout.rgb = fin.rgb * lumen; 56 fout.w = fin.w;
|
vignette_approx.rsh | 49 const float4 fin = convert_float4(in); 55 fout.rgb = fin.rgb * lumen; 56 fout.w = fin.w;
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
vignette.rsh | 49 const float4 fin = convert_float4(in); 55 fout.rgb = fin.rgb * lumen; 56 fout.w = fin.w;
|