HomeSort by relevance Sort by last modified time
    Searched refs:nvalue (Results 1 - 20 of 20) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
imageop.c 433 int sum = 0, nvalue; local
450 nvalue = sum & 0x180;
451 sum -= nvalue;
452 ovalue |= nvalue >> pos;
510 int i, pos, value = 0, nvalue; local
536 nvalue = (value >> pos) & 0x03;
537 *ncp++ = nvalue | (nvalue << 2) |
538 (nvalue << 4) | (nvalue << 6);
549 int i, pos, value = 0, nvalue; local
660 Py_UInt32 nvalue = r | (g<<8) | (b<<16); local
681 int nvalue; local
    [all...]
_lsprof.c 655 setSubcalls(ProfilerObject *pObj, int nvalue)
657 if (nvalue == 0)
659 else if (nvalue > 0)
665 setBuiltins(ProfilerObject *pObj, int nvalue)
667 if (nvalue == 0)
669 else if (nvalue > 0) {
  /external/python/cpython2/Modules/
imageop.c 436 int sum = 0, nvalue; local
453 nvalue = sum & 0x180;
454 sum -= nvalue;
455 ovalue |= nvalue >> pos;
513 int i, pos, value = 0, nvalue; local
539 nvalue = (value >> pos) & 0x03;
540 *ncp++ = nvalue | (nvalue << 2) |
541 (nvalue << 4) | (nvalue << 6)
552 int i, pos, value = 0, nvalue; local
663 Py_UInt32 nvalue = r | (g<<8) | (b<<16); local
684 int nvalue; local
    [all...]
_lsprof.c 655 setSubcalls(ProfilerObject *pObj, int nvalue)
657 if (nvalue == 0)
659 else if (nvalue > 0)
665 setBuiltins(ProfilerObject *pObj, int nvalue)
667 if (nvalue == 0)
669 else if (nvalue > 0) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SetStamp/
SetStamp.c 277 unsigned int nvalue; local
330 if (ReadFromFile (fp, offset, &nvalue, 2) != 0) {
337 switch (nvalue & 0xFFFF) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lvm.c 52 lua_Number n = nvalue(obj);
234 return luai_numlt(L, nvalue(l), nvalue(r));
246 return luai_numle(L, nvalue(l), nvalue(r));
265 case LUA_TNUMBER: return luai_numeq(nvalue(t1), nvalue(t2));
366 lua_Number res = luaO_arith(op - TM_ADD + LUA_OPADD, nvalue(b), nvalue(c));
524 lua_Number nb = nvalue(rb), nc = nvalue(rc);
    [all...]
ltable.c 100 return hashnum(t, nvalue(key));
129 lua_Number n = nvalue(key);
408 else if (ttisnumber(key) && luai_numisnan(L, nvalue(key)))
454 if (ttisnumber(gkey(n)) && luai_numeq(nvalue(gkey(n)), nk))
487 lua_Number n = nvalue(key);
ldump.c 96 DumpNumber(nvalue(o),D);
lapi.c 307 setnvalue(o1, luaO_arith(op, nvalue(o1), nvalue(o2)));
340 return nvalue(o);
354 lua_Number num = nvalue(o);
371 lua_Number num = nvalue(o);
luac.c 263 printf(LUA_NUMBER_FMT,nvalue(o));
lobject.h 153 #define nvalue(o) check_exp(ttisnumber(o), num_(o)) macro
lcode.c 297 lua_Number n = nvalue(idx);
  /external/python/cpython3/Modules/
_lsprof.c 652 setSubcalls(ProfilerObject *pObj, int nvalue)
654 if (nvalue == 0)
656 else if (nvalue > 0)
662 setBuiltins(ProfilerObject *pObj, int nvalue)
664 if (nvalue == 0)
666 else if (nvalue > 0) {
  /external/lua/src/
lobject.h 165 #define nvalue(o) check_exp(ttisnumber(o), \ macro
lcode.c 968 return (nvalue(v2) != 0);
    [all...]
lvm.c 80 *n = nvalue(&v); /* convert result of 'luaO_str2num' to a float */
    [all...]
  /external/libxml2/
relaxng.c 2710 xmlChar *nval, *nvalue; local
8781 xmlChar *nval, *nvalue; local
    [all...]
  /external/tcpdump/
print-isakmp.c 909 u_int nvalue; member in struct:attrmap
944 if (map && t < nmap && v < map[t].nvalue && map[t].value[v])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/pydoc_data/
topics.py 14 'bltin-null-object': u'\nThe Null Object\n***************\n\nThis object is returned by functions that don\'t explicitly return a\nvalue. It supports no special operations. There is exactly one null\nobject, named "None" (a built-in name).\n\nIt is written as "None".\n',
16 'booleans': u'\nBoolean operations\n******************\n\n or_test ::= and_test | or_test "or" and_test\n and_test ::= not_test | and_test "and" not_test\n not_test ::= comparison | "not" not_test\n\nIn the context of Boolean operations, and also when expressions are\nused by control flow statements, the following values are interpreted\nas false: "False", "None", numeric zero of all types, and empty\nstrings and containers (including strings, tuples, lists,\ndictionaries, sets and frozensets). All other values are interpreted\nas true. (See the "__nonzero__()" special method for a way to change\nthis.)\n\nThe operator "not" yields "True" if its argument is false, "False"\notherwise.\n\nThe expression "x and y" first evaluates *x*; if *x* is false, its\nvalue is returned; otherwise, *y* is evaluated and the resulting value\nis returned.\n\nThe expression "x or y" first evaluates *x*; if *x* is true, its value\nis returned; otherwise, *y* is evaluated and the resulting value is\nreturned.\n\n(Note that neither "and" nor "or" restrict the value and type they\nreturn to "False" and "True", but rather return the last evaluated\nargument. This is sometimes useful, e.g., if "s" is a string that\nshould be replaced by a default value if it is empty, the expression\n"s or \'foo\'" yields the desired value. Because "not" has to invent a\nvalue anyway, it does not bother to return a value of the same type as\nits argument, so e.g., "not \'foo\'" yields "False", not "\'\'".)\n',
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/
topics.py     [all...]

Completed in 2277 milliseconds