HomeSort by relevance Sort by last modified time
    Searched refs:fi (Results 1 - 25 of 324) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/freetype/src/tools/
test_afm.c 10 void dump_fontinfo( AFM_FontInfo fi )
16 ( fi->IsCIDFont ) ? "" : "non-" );
18 printf( "FontBBox: %.2f %.2f %.2f %.2f\n", fi->FontBBox.xMin / 65536.,
19 fi->FontBBox.yMin / 65536.,
20 fi->FontBBox.xMax / 65536.,
21 fi->FontBBox.yMax / 65536. );
22 printf( "Ascender: %.2f\n", fi->Ascender / 65536. );
23 printf( "Descender: %.2f\n\n", fi->Descender / 65536. );
25 if ( fi->NumTrackKern )
27 fi->NumTrackKern )
117 AFM_FontInfoRec fi; local
    [all...]
  /external/toybox/toys/pending/
lsof.c 51 struct file_info *fi = data; local
58 if (TT.sought_files[i].st_dev==fi->st_dev)
59 if (TT.sought_files[i].st_ino==fi->st_ino) break;
65 if (fi->pi.pid != TT.last_shown_pid)
66 printf("%d\n", TT.last_shown_pid = fi->pi.pid);
76 fi->pi.cmd, fi->pi.pid, getusername(fi->pi.uid),
77 fi->fd, fi->rw, fi->locks, fi->type, fi->device, fi->size_off
130 struct file_info *fi = xzalloc(sizeof(struct file_info)); local
144 struct file_info *fi = add_socket(inode, "unix"); local
165 struct file_info *fi = add_socket(inode, "netlink"); local
200 struct file_info *fi = add_socket(inode, af == 4 ? "IPv4" : "IPv6"); local
291 struct file_info *fi = xzalloc(sizeof(struct file_info)); local
307 struct file_info *fi = new_file_info(pi, ""); local
347 struct file_info *fi; local
370 struct file_info *fi = new_file_info(pi, "NOFD"); local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMMachineFunctionInfo.h 156 bool isGPRCalleeSavedArea1Frame(int fi) const {
157 if (fi < 0 || fi >= (int)GPRCS1Frames.size())
159 return GPRCS1Frames[fi];
161 bool isGPRCalleeSavedArea2Frame(int fi) const {
162 if (fi < 0 || fi >= (int)GPRCS2Frames.size())
164 return GPRCS2Frames[fi];
166 bool isDPRCalleeSavedAreaFrame(int fi) const {
167 if (fi < 0 || fi >= (int)DPRCSFrames.size()
    [all...]
  /external/u-boot/drivers/mtd/
cfi_mtd.c 25 flash_info_t *fi = mtd->priv; local
26 size_t a_start = fi->start[0] + instr->addr;
32 for (sect = 0; sect < fi->sector_count; sect++) {
33 if (a_start == fi->start[sect])
36 if (sect < fi->sector_count - 1) {
37 if (a_end == fi->start[sect + 1]) {
51 error = flash_erase(fi, s_first, s_last);
70 flash_info_t *fi = mtd->priv; local
71 u_char *f = (u_char*)(fi->start[0]) + from;
82 flash_info_t *fi = mtd->priv local
109 flash_info_t *fi = mtd->priv; local
121 flash_info_t *fi = mtd->priv; local
205 flash_info_t *fi; local
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ArchiveName.h 8 UString CreateArchiveName(const UStringVector &paths, const NWindows::NFile::NFind::CFileInfo *fi = NULL);
ArchiveName.cpp 16 static UString CreateArchiveName(const NFind::CFileInfo &fi, bool keepName)
18 FString resultName = fi.Name;
19 if (!fi.IsDir() && !keepName)
49 NFind::CFileInfo fi; local
50 if (fi.Find(dirPrefix))
51 resultName = fi.Name;
58 NFind::CFileInfo fi; local
59 if (fi.Find(path))
61 resultName = fi.Name;
62 if (!fi.IsDir() && !keepName)
    [all...]
EnumDirItems.cpp 26 const NFind::CFileInfo &fi)
29 di.Size = fi.Size;
30 di.CTime = fi.CTime;
31 di.ATime = fi.ATime;
32 di.MTime = fi.MTime;
33 di.Attrib = fi.Attrib;
34 di.IsAltStream = fi.IsAltStream;
38 di.Name = fs2us(fi.Name);
40 // di.ShortName = fs2us(fi.ShortName);
44 if (fi.IsDir())
221 NFind::CFileInfo fi; local
266 NFind::CFileInfo fi; local
610 NFind::CFileInfo fi; local
706 NFind::CFileInfo fi; local
789 NFind::CFileInfo fi; local
808 NFind::CFileInfo fi; local
    [all...]
  /external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
WebServerPluginInfo.java 1 package fi.iki.elonen;
WebServerPlugin.java 1 package fi.iki.elonen;
39 import fi.iki.elonen.NanoHTTPD.IHTTPSession;
InternalRewrite.java 1 package fi.iki.elonen;
39 import fi.iki.elonen.NanoHTTPD.Response;
  /external/freetype/src/type1/
t1afm.c 41 AFM_FontInfo fi )
43 FT_FREE( fi->KernPairs );
44 fi->NumKernPair = 0;
46 FT_FREE( fi->TrackKerns );
47 fi->NumTrackKern = 0;
49 FT_FREE( fi );
111 AFM_FontInfo fi )
157 fi->NumKernPair = FT_PEEK_USHORT_LE( p );
159 if ( p + 4 * fi->NumKernPair > limit )
166 if ( fi->NumKernPair == 0
242 AFM_FontInfo fi = NULL; local
376 AFM_FontInfo fi = (AFM_FontInfo)( (T1_Face)face )->afm_data; local
    [all...]
t1afm.h 35 AFM_FontInfo fi );
38 T1_Get_Kerning( AFM_FontInfo fi,
  /external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
DummyPlugin.java 1 package fi.iki.elonen;
41 import fi.iki.elonen.NanoHTTPD.IHTTPSession;
42 import fi.iki.elonen.NanoHTTPD.Response;
43 import fi.iki.elonen.NanoHTTPD.Response.Status;
DummyPluginInfo.java 1 package fi.iki.elonen;
  /external/mesa3d/src/mesa/main/tests/
mesa_formats.cpp 44 for (int fi = MESA_FORMAT_NONE + 1; fi < MESA_FORMAT_COUNT; ++fi) {
45 mesa_format f = (mesa_format) fi;
75 for (int fi = 0; fi < MESA_FORMAT_COUNT; ++fi) {
76 mesa_format f = (mesa_format) fi;
  /external/mesa3d/src/util/
half_float.c 53 const fi_type fi = {val}; local
54 const int flt_m = fi.i & 0x7fffff;
55 const int flt_e = (fi.i >> 23) & 0xff;
56 const int flt_s = (fi.i >> 31) & 0x1;
93 m = _mesa_lroundevenf((1 << 24) * fabsf(fi.f));
139 fi_type fi; local
174 fi.i = (flt_s << 31) | (flt_e << 23) | flt_m;
175 result = fi.f;
  /external/lzma/CPP/Windows/
FileFind.cpp 67 #define WIN_FD_TO_MY_FI(fi, fd) \
68 fi.Attrib = fd.dwFileAttributes; \
69 fi.CTime = fd.ftCreationTime; \
70 fi.ATime = fd.ftLastAccessTime; \
71 fi.MTime = fd.ftLastWriteTime; \
72 fi.Size = (((UInt64)fd.nFileSizeHigh) << 32) + fd.nFileSizeLow; \
73 fi.IsAltStream = false; \
74 fi.IsDevice = false;
78 fi.ObjectID = fd.dwOID;
80 fi.ReparseTag = fd.dwReserved0;
604 CFileInfo fi; local
610 CFileInfo fi; local
616 CFileInfo fi; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_half.h 54 union fi magic;
55 union fi f32;
106 union fi infnan;
107 union fi magic;
108 union fi f32;
  /external/virglrenderer/src/gallium/auxiliary/util/
u_half.h 54 union fi magic;
55 union fi f32;
102 union fi infnan;
103 union fi magic;
104 union fi f32;
  /external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
agent.cc 382 lir::Instruction* fi = *(c.instructions.begin()); local
392 addInstr(c, fi, OP_CONST_STRING, {v0, c.Alloc<String>(id, id->orig_index)});
393 addInstr(c, fi, OP_MOVE_OBJECT_FROM16, {v1, thiz});
394 addCall(b, c, fi, OP_INVOKE_STATIC, dispatcherT, "get", dispatcherT,
396 addInstr(c, fi, OP_MOVE_RESULT_OBJECT, {v2});
397 addInstr(c, fi, OP_IF_EQZ, {v2, originalMethod});
398 addCall(b, c, fi, OP_INVOKE_VIRTUAL, dispatcherT, "isMock", booleanScalarT, {objectT},
400 addInstr(c, fi, OP_MOVE_RESULT, {v2});
401 addInstr(c, fi, OP_IF_EQZ, {v2, originalMethod});
402 addInstr(c, fi, OP_MOVE_OBJECT_FROM16, {v0, c.Alloc<VReg>(thisReg + 1)})
466 lir::Instruction* fi = *(c.instructions.begin()); local
613 lir::Instruction* fi = *(c.instructions.begin()); local
    [all...]
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
IntegrationTestBase.java 1 package fi.iki.elonen.integration;
42 import fi.iki.elonen.NanoHTTPD;
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
EchoSocketSample.java 1 package fi.iki.elonen.samples.echo;
38 import fi.iki.elonen.NanoWSD;
  /external/nanohttpd/markdown-plugin/src/main/java/fi/iki/elonen/
MarkdownWebServerPluginInfo.java 1 package fi.iki.elonen;
  /external/linux-kselftest/tools/testing/selftests/memfd/
fuse_mnt.c 49 struct fuse_file_info *fi)
61 static int memfd_open(const char *path, struct fuse_file_info *fi)
66 if ((fi->flags & 3) != O_RDONLY)
70 fi->direct_io = 1;
79 struct fuse_file_info *fi)
  /external/libldac/src/
quant_ldac.c 26 IEEE754_FI fi; local
28 fi.f = val;
29 id = ((fi.i & 0x7fffffff) >> 23) - 111;
104 IEEE754_FI fi; local
108 fi.f = p_nspec[i] * qf + fc;
109 p_qspec[i] = (short)fi.i;
149 IEEE754_FI fi; local
154 fi.f = (p_nspec[i] - ldqspec) * rqsf + fc;
155 p_rspec[i] = (short)fi.i;

Completed in 967 milliseconds

1 2 3 4 5 6 7 8 91011>>