Home
last modified time | relevance | path

Searched refs:getfield (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/s390/
Dassembler-s390.h543 inline T getfield(T value) { in getfield() function
554 emit2bytes(getfield<uint16_t, 2, 0, 16>(opcode)); in e_format()
558 emit2bytes(getfield<uint16_t, 2, 0, 8>(opcode) | in i_format()
559 getfield<uint16_t, 2, 8, 16>(f1)); in i_format()
563 emit4bytes(getfield<uint32_t, 4, 0, 16>(opcode) | in ie_format()
564 getfield<uint32_t, 4, 24, 28>(f1) | in ie_format()
565 getfield<uint32_t, 4, 28, 32>(f2)); in ie_format()
569 getfield<uint64_t, 6, 0, 8>(opcode) | getfield<uint64_t, 6, 8, 12>(f1) | in mii_format()
570 getfield<uint64_t, 6, 12, 24>(f2) | getfield<uint64_t, 6, 24, 48>(f3)); in mii_format()
577 getfield<uint32_t, 4, 0, 8>(op1) | getfield<uint32_t, 4, 8, 12>(f1) | in ri_format()
[all …]
/external/skia/third_party/lua/src/
Dloslib.c157 static int getfield (lua_State *L, const char *key, int d) { in getfield() function
249 ts.tm_sec = getfield(L, "sec", 0); in os_time()
250 ts.tm_min = getfield(L, "min", 0); in os_time()
251 ts.tm_hour = getfield(L, "hour", 12); in os_time()
252 ts.tm_mday = getfield(L, "day", -1); in os_time()
253 ts.tm_mon = getfield(L, "month", -1) - 1; in os_time()
254 ts.tm_year = getfield(L, "year", -1) - 1900; in os_time()
/external/syslinux/com32/lua/src/
Dloslib.c162 static int getfield (lua_State *L, const char *key, int d) { in getfield() function
254 ts.tm_sec = getfield(L, "sec", 0); in os_time()
255 ts.tm_min = getfield(L, "min", 0); in os_time()
256 ts.tm_hour = getfield(L, "hour", 12); in os_time()
257 ts.tm_mday = getfield(L, "day", -1); in os_time()
258 ts.tm_mon = getfield(L, "month", -1) - 1; in os_time()
259 ts.tm_year = getfield(L, "year", -1) - 1900; in os_time()
/external/desugar/java/com/google/devtools/build/android/desugar/
DLambdaDesugaring.java452 FieldInsnNode getfield = (FieldInsnNode) insn; in attemptAllocationBeforeArgumentLoads() local
454 getfield.desc.length() == 1 in attemptAllocationBeforeArgumentLoads()
455 ? getfield.desc.equals(paramTypes[i].getDescriptor()) in attemptAllocationBeforeArgumentLoads()
458 paramTypes[i], i, internalName, getfield.name, getfield.desc); in attemptAllocationBeforeArgumentLoads()
471 getfield.name, i, internalName, insn.getOpcode()); in attemptAllocationBeforeArgumentLoads()