HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 1176 - 1200 of 2724) sorted by null

<<41424344454647484950>>

  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 30 * @file
82 * - undetermined (when .file == TGSI_FILE_NULL)
89 unsigned file:4; /* TGSI_FILE_* */ member in struct:lp_tgsi_channel_info
117 * Whether any of the texture opcodes access a register file other than
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_text.c 317 parse_file( const char **pcur, uint *file )
326 *file = i;
377 /* <register_file_bracket> ::= <file> `['
382 uint *file )
384 if (!parse_file( &ctx->cur, file )) {
385 report_error( ctx, "Unknown register file" );
402 uint *file,
407 if (!parse_register_file_bracket( ctx, file ))
423 uint *file,
426 if (!parse_register_file_bracket_index( ctx, file, index )
682 uint file; local
763 uint file; local
879 uint file; local
1068 uint file; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow.c 54 cb_data->Cb(cb_data->UserData, fullinst, src->File,
124 cb(userdata, fullinst, inst->RGB.Src[src].File, inst->RGB.Src[src].Index,
128 cb(userdata, fullinst, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, RC_MASK_W);
199 if (inst->U.I.SrcReg[src].File == RC_FILE_NONE)
202 if (inst->U.I.SrcReg[src].File == RC_FILE_PRESUB) {
262 cb(userdata, fullinst, inst->DstReg.File, inst->DstReg.Index, inst->DstReg.WriteMask);
304 rc_register_file file, unsigned int index, unsigned int mask)
309 d->Fn(d->UserData, inst, file, index, chan);
348 rc_register_file file = inst->DstReg.File; local
358 rc_register_file file = inst->SrcReg[src].File; local
395 rc_register_file file = RC_FILE_TEMPORARY; local
404 rc_register_file file = RC_FILE_TEMPORARY; local
414 rc_register_file file = inst->RGB.Src[src].File; local
424 rc_register_file file = inst->Alpha.Src[src].File; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs.h 88 fs_reg(enum register_file file, int reg);
89 fs_reg(enum register_file file, int reg, uint32_t type);
94 /** Register file: ARF, GRF, MRF, IMM. */
95 enum register_file file; member in class:fs_reg
115 /** Value for file == IMM */
brw_vec4.h 61 /** Register file: ARF, GRF, MRF, IMM. */
62 enum register_file file; member in class:brw::reg
71 /** Value for file == BRW_IMMMEDIATE_FILE */
96 src_reg(register_file file, int reg, const glsl_type *type);
135 dst_reg(register_file file, int reg);
136 dst_reg(register_file file, int reg, const glsl_type *type, int writemask);
  /external/opencv/cvaux/src/
cvlevmarprojbandle.cpp 56 /* Note these file may be very large */
535 FILE *file; local
536 file = fopen( TRACK_BUNDLE_FILE_MATRW ,"w");
540 fprintf(file,"\nPoint=%d\n",currPoint);
550 fprintf(file,"%lf ",val);
553 fprintf(file,"\n");
556 fclose(file);
608 FILE *file; local
711 FILE *file; local
940 FILE *file; local
962 FILE *file; local
980 FILE *file; local
1278 FILE* file; local
1309 FILE* file; local
1346 FILE *file; local
1377 FILE *file; local
1404 FILE *file; local
1420 FILE *file; local
1527 FILE* file; local
1606 FILE *file; local
1625 FILE* file; local
1694 FILE* file; local
1725 FILE* file; local
    [all...]
  /external/opencv/cxcore/src/
cxswitcher.cpp 228 // reading /proc/cpuinfo file (proc file system must be supported)
229 FILE *file = fopen( "/proc/cpuinfo", "r" ); local
231 if( file )
238 const char* ptr = fgets( buffer, max_size, file );
262 fclose( file );
816 /* End of file. */
  /external/pdfium/samples/
pdfium_test.cc 3 // found in the LICENSE file.
51 // Reads the entire contents of a file into a newly malloc'd buffer.
53 FILE* file = fopen(filename, "rb"); local
54 if (!file) {
58 (void) fseek(file, 0, SEEK_END);
59 size_t file_length = ftell(file);
63 (void) fseek(file, 0, SEEK_SET);
68 size_t bytes_read = fread(buffer, 1, file_length, file);
69 (void) fclose(file);
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 264 FileDescriptor file = UnittestNoGenericServices.getDescriptor(); local
265 assertEquals(1, file.getServices().size());
266 assertEquals("TestService", file.getServices().get(0).getName());
267 assertEquals(1, file.getServices().get(0).getMethods().size());
269 file.getServices().get(0).getMethods().get(0).getName());
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc 106 unittest::TestAllTypes::descriptor()->file();
2039 const FileDescriptor* file = local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 149 FileDescriptorProto file; local
150 parser_->Parse(input_.get(), &file);
154 // Parse the text as a file and validate it (with a DescriptorPool), and
162 FileDescriptorProto file; local
163 file.set_name("foo.proto");
164 parser_->Parse(input_.get(), &file);
171 file, &validation_error_collector) == NULL);
833 "0:0: File must begin with 'syntax = \"proto2\";'.\n");
    [all...]
plugin.pb.h 12 #error This file was generated by a newer version of protoc which is
17 #error This file was generated by an older version of protoc which is
19 #error regenerate this file with a newer version of protoc.
248 // @@protoc_insertion_point(class_scope:google.protobuf.compiler.CodeGeneratorResponse.File)
324 typedef CodeGeneratorResponse_File File;
340 // repeated .google.protobuf.compiler.CodeGeneratorResponse.File file = 15;
344 inline const ::google::protobuf::compiler::CodeGeneratorResponse_File& file(int index) const;
348 file() const;
558 // @@protoc_insertion_point(field_get:google.protobuf.compiler.CodeGeneratorResponse.File.name
856 inline const ::google::protobuf::compiler::CodeGeneratorResponse_File& CodeGeneratorResponse::file(int index) const { function in class:google::protobuf::compiler::CodeGeneratorResponse
869 CodeGeneratorResponse::file() const { function in class:google::protobuf::compiler::CodeGeneratorResponse
    [all...]
  /external/skia/bench/
nanobench.cpp 5 * found in the LICENSE file.
539 SkString file; local
540 while (it.next(&file)) {
541 fImages.push_back() = SkOSPath::Join(flag, file.c_str());
    [all...]
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
MigratorFrame.java 29 import java.io.File;
232 browseButton.setToolTipText("Click this button to browse the file systems on your computer.");
294 File projectFolder = new File(folderTextField.getText());
319 File selectedFile = fileChooser.getSelectedFile();
366 File file = new File(filename); local
367 if (file.exists() && file.isDirectory())
    [all...]
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 9 * you may not use this file except in compliance with the License.
68 * the file size and read position.
73 FILE *pFile;
681 EAS_ReportX(_EAS_SEVERITY_INFO, "EAS_HWInit: Buffered file access\n");
683 EAS_ReportX(_EAS_SEVERITY_INFO, "EAS_HWInit: Memory mapped file access\n");
690 /* need to track file opens for duplicate handles */
798 * Open a file for read or write
804 EAS_HW_FILE *file; local
814 /* find an empty entry in the file table */
815 file = hwInstData->files
1313 EAS_HW_FILE *file; local
    [all...]
EASLibVst.c 8 * you may not use this file except in compliance with the License.
66 * the file size and read position.
71 FILE *pFile;
376 EAS_ReportX(_EAS_SEVERITY_INFO, "EAS_HWInit: Buffered file access\n");
378 EAS_ReportX(_EAS_SEVERITY_INFO, "EAS_HWInit: Memory mapped file access\n");
385 /* need to track file opens for duplicate handles */
493 * Open a file for read or write
499 EAS_HW_FILE *file; local
509 /* find an empty entry in the file table */
510 file = hwInstData->files
1008 EAS_HW_FILE *file; local
    [all...]
  /external/svox/pico/lib/
picorsrc.c 5 * you may not use this file except in compliance with the License.
17 * @file picorsrc.c
67 picoos_File file; member in struct:picorsrc_resource
105 this->file = NULL;
284 PICODBG_DEBUG(("analysing file name %s",fileName));
296 picoos_FileHeader header, picoos_uint32 * headerlen, picoos_File file)
305 status = picoos_readPicoHeader(file, headerlen);
309 return picoos_emRaiseException(this->common->em,status,NULL,(picoos_char *)"problem reading file header");
312 status = picoos_read_pi_uint16(file,&hdrlen1);
320 if (picoos_ReadBytes(file, (picoos_uint8 *) this->tmpHeader, &n) && hdrlen1 == n)
    [all...]
  /external/toybox/kconfig/
expr.h 18 struct file { struct
19 struct file *next;
20 struct file *parent;
121 struct file *file; member in struct:property
143 struct file *file; member in struct:menu
153 extern struct file *file_list;
154 extern struct file *current_file;
155 struct file *lookup_file(const char *name)
    [all...]
  /external/toybox/toys/pending/
crond.c 23 -L Log to file
382 loginfo(LOG_LEVEL7, "ignoring file '%s' (no such user)", entry->d_name);
432 char *file = "/bin/sh"; local
436 if (!strcmp("SHELL", v->name)) file = v->val;
446 if (prog) file = prog;
447 if (TT.flagd) loginfo(LOG_LEVEL5, "child running %s", file);
458 execlp(file, file, (prog ? "-ti" : "-c"), (prog ? NULL : job->cmd), (char *) NULL);
459 loginfo(LOG_ERROR, "can't execute '%s' for user %s", file, cfile->username);
461 if (!prog) dprintf(1, "Exec failed: %s -c %s\n", file, job->cmd)
    [all...]
diff.c 8 USE_DIFF(NEWTOY(diff, "<2>2B(ignore-blank-lines)d(minimal)b(ignore-space-change)ut(expand-tabs)w(ignore-all-space)i(ignore-case)T(initial-tab)s(report-identical-files)q(brief)a(text)L(label)*S(starting-file):N(new-file)r(recursive)U(unified)#<0=3", TOYFLAG_USR|TOYFLAG_BIN))
14 usage: diff [-abBdiNqrTstw] [-L LABEL] [-S FILE] [-U LINES] FILE1 FILE2
25 -S Start with FILE when comparing directories
72 static struct file { struct
73 FILE *fp;
75 } file[2]; variable in typeref:struct:file
178 static FILE* read_stdin()
197 static int read_tok(FILE *fp, off_t *off, int tok)
241 /* file[0] corresponds file 1 and file[1] correspond file 2
    [all...]
  /external/v8/samples/
process.cc 580 string* file) {
585 *file = arg;
595 // Reads a file into a v8 string.
597 FILE* file = fopen(name.c_str(), "rb"); local
598 if (file == NULL) return Handle<String>();
600 fseek(file, 0, SEEK_END);
601 int size = ftell(file);
602 rewind(file);
607 int read = static_cast<int>(fread(&chars[i], 1, size - i, file));
653 string file; local
    [all...]
  /external/v8/src/base/platform/
platform-posix.cc 3 // found in the LICENSE file.
334 FILE* OS::FOpen(const char* path, const char* mode) {
335 FILE* file = fopen(path, mode); local
336 if (file == NULL) return NULL;
338 if (fstat(fileno(file), &file_stat) != 0) return NULL;
340 if (is_regular_file) return file;
341 fclose(file);
351 FILE* OS::OpenTemporaryFile() {
376 void OS::FPrint(FILE* out, const char* format, ...)
    [all...]
  /external/v8/tools/profviz/
profviz.js 69 'file' : filename,
101 "file"];
220 var file = getSelectedFile();
230 worker.run(file, kResX, kResY, distortion, range[0], range[1]);
235 var file = ui.file.files[0];
236 if (!file) throw Error("No valid file selected.");
237 return file;
  /frameworks/av/media/libstagefright/
MediaCodecList.cpp 5 * you may not use this file except in compliance with the License.
66 FILE *resultsFile = fopen(kProfilingResults, "r");
325 FILE *file = fopen(path, "r"); local
327 if (file == NULL) {
328 ALOGW("unable to open media codecs configuration xml file: %s", path);
349 int bytes_read = ::fread(buff, 1, BUFF_SIZE, file);
370 fclose(file);
371 file = NULL;
401 // For security reasons and for simplicity, file names can only contai
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 5 * you may not use this file except in compliance with the License.
32 import java.io.File;
73 private static final File[] EMPTY = new File[0];
76 * Set owner and mode of of given {@link File}.
83 public static int setPermissions(File path, int mode, int uid, int gid) {
169 // copy a file from srcFile to destFile, return true if succeed, return
171 public static boolean copyFile(File srcFile, File destFile) {
190 public static boolean copyToFile(InputStream inputStream, File destFile)
359 final File file = files[i]; local
619 File file = buildFile(parent, name, ext); local
    [all...]

Completed in 250 milliseconds

<<41424344454647484950>>