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

1 2

  /external/skia/include/utils/
SkLua.h 37 lua_State* get() const { return fL; }
38 lua_State* operator*() const { return fL; }
39 lua_State* operator->() const { return fL; }
64 lua_State* fL;
SkLuaCanvas.h 64 lua_State* fL;
  /external/skqp/include/utils/
SkLua.h 37 lua_State* get() const { return fL; }
38 lua_State* operator*() const { return fL; }
39 lua_State* operator->() const { return fL; }
64 lua_State* fL;
SkLuaCanvas.h 64 lua_State* fL;
  /external/libyuv/files/third_party/gflags/gen/posix/include/gflags/
gflags_declare.h 114 namespace fL##shorttype { extern GFLAGS_DLL_DECLARE_FLAG type FLAGS_##name; } \
115 using fL##shorttype::FLAGS_##name
gflags.h 470 namespace fL##shorttype { \
479 using fL##shorttype::FLAGS_##name
  /external/libyuv/files/third_party/gflags/gen/win/include/gflags/
gflags_declare.h 114 namespace fL##shorttype { extern GFLAGS_DLL_DECLARE_FLAG type FLAGS_##name; } \
115 using fL##shorttype::FLAGS_##name
gflags.h 470 namespace fL##shorttype { \
479 using fL##shorttype::FLAGS_##name
  /external/gflags/android/gflags/
gflags_declare.h 123 namespace fL##shorttype { extern GFLAGS_DLL_DECLARE_FLAG type FLAGS_##name; } \
124 using fL##shorttype::FLAGS_##name
gflags.h 477 namespace fL##shorttype { \
486 using fL##shorttype::FLAGS_##name
  /external/skia/src/utils/
SkLua.cpp 124 fL = luaL_newstate();
125 luaL_openlibs(fL);
126 SkLua::Load(fL);
129 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
134 lua_getglobal(fL, fTermCode.c_str());
135 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) {
136 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
139 lua_close(fL);
144 int err = luaL_loadstring(fL, code) || lua_pcall(fL, 0, 0, 0)
    [all...]
SkLuaCanvas.cpp 46 #define AUTO_LUA(verb) AutoCallLua lua(fL, fFunc.c_str(), verb)
71 SkLua(fL).pushCanvas(this);
78 , fL(L)
  /external/skqp/src/utils/
SkLua.cpp 124 fL = luaL_newstate();
125 luaL_openlibs(fL);
126 SkLua::Load(fL);
129 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {}
134 lua_getglobal(fL, fTermCode.c_str());
135 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) {
136 SkDebugf("lua err: %s\n", lua_tostring(fL, -1));
139 lua_close(fL);
144 int err = luaL_loadstring(fL, code) || lua_pcall(fL, 0, 0, 0)
    [all...]
SkLuaCanvas.cpp 46 #define AUTO_LUA(verb) AutoCallLua lua(fL, fFunc.c_str(), verb)
71 SkLua(fL).pushCanvas(this);
78 , fL(L)
  /external/google-breakpad/src/third_party/linux/include/gflags/
gflags.h 450 namespace fL##shorttype { \
458 using fL##shorttype::FLAGS_##name
461 namespace fL##shorttype { \
464 using fL##shorttype::FLAGS_##name
  /external/webrtc/third_party/gflags/gen/posix/include/gflags/
gflags.h 486 namespace fL##shorttype { \
494 using fL##shorttype::FLAGS_##name
497 namespace fL##shorttype { \
500 using fL##shorttype::FLAGS_##name
  /external/neven/Embedded/common/src/b_TensorEm/
Flt16Vec.c 251 int32 fL;
254 fL = ( int32 )0x7FFF0000 / maxAbsL;
260 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( int32 )dstL[ iL ] * fL + 32768 ) >> 16;
263 return fL;
294 int32 fL;
308 /* fL is positive and occupies only 16 bits - a product with int16 fits in int32 */
309 fL = ( uint32 )0xFFFFFFFF / normL;
312 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( ( ( int32 )dstL[ iL ] * fL ) >> 15 ) + 1 ) >> 1;
  /external/webrtc/third_party/gflags/gen/win/include/gflags/
gflags.h 504 namespace fL##shorttype { \
513 using fL##shorttype::FLAGS_##name
516 namespace fL##shorttype { \
520 using fL##shorttype::FLAGS_##name
  /external/icu/icu4c/source/test/intltest/
nmfmapts.cpp 122 Formattable fL(l);
147 res6 = cur_fr->format(fL, res6, pos4, status);
151 logln((UnicodeString) "" + fL.getLong() + " formatted to " + res6);
dcfmapts.cpp 211 Formattable fL(l);
230 res4 = cust2.format(fL, res4, pos4, status);
234 logln((UnicodeString) "" + fL.getLong() + " formatted to " + res4);
    [all...]
  /external/pdfium/core/fpdfdoc/
cpvt_generateap.cpp 559 // |fL| is precalculated approximate value of 4 * tan((3.14 / 2) / 4) / 3,
560 // where |fL| * radius is a good approximation of control points for
562 const float fL = 0.5523f;
563 const float fDeltaX = fL * rect.Width() / 2.0;
564 const float fDeltaY = fL * rect.Height() / 2.0;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateTimeGeneratorTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateTimeGeneratorTest.java     [all...]
  /external/webrtc/talk/media/testdata/
video.rtpdump 236 ?.NoC??u??X?P=4??5:?? ??C'?_????+Qt>q?8B:D;b?-\??????u?Gn?a?3?P6???Gz@?g?h??p??????????B????<?}??B??d??NYh?/??????0|Om??N8??@O??_????H?/??G?????"?Tn4? ???Z??e?}?V?ZU#?????Je???{??~?7?_???B<??,????_?????5??~?]?????CJc???j?~#?7?E?I?/??n?u??zs3????|?<=?G????=?n??.??f??@r$!??Y?'BXHL??v`?#?&ng}???G V???qLy=8??? y????;<N?k?yr*???i2?Z??m0?`?o ???L??K?w ?<?????l???_??Z?'A??'t???SA??k?W??UEu????r}????T_'?EZ???o?Y????6 ???????????5??b?fS)?4?c??o?fL?K? ?x?????-?????|?? ?n???A?nZIw??4+?VQ^?n???h#???[??>??;M:??1?|+???? ?O?h???2??}?????a????o.???@Sxwx?;??E??????? ?????;????6?????l>??!?U????/K?g`?:?????zZ???????2??v 2?/?f89?ZuK???rQq??K?)??-_?c?D<?????Ir?/F??????{????????????#D?C7?cA|_?yp"z<9?i*????/o??=?ro??a?e???{?;]2
    [all...]
  /external/webrtc/data/voice_engine/stereo_rtp_files/
stereo_g729_jitter.rtp     [all...]

Completed in 1985 milliseconds

1 2