Home
last modified time | relevance | path

Searched refs:tl (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_telnetlib.py304 if cmd == tl.SE and self.sb_getter:
308 tl = telnetlib variable
313 cmds = [tl.AO, tl.AYT, tl.BRK, tl.EC, tl.EL, tl.GA, tl.IP, tl.NOP]
327 self.assertEqual(cmd[1], tl.NOOPT)
340 self._test_command(['x' * 100, tl.IAC + cmd, 'y'*100, EOF_sigil])
341 self._test_command(['x' * 10, tl.IAC + cmd, 'y'*10, EOF_sigil])
342 self._test_command([tl.IAC + cmd, EOF_sigil])
344 self._test_command([tl.IAC + cmd for (cmd) in self.cmds] + [EOF_sigil])
349 send = [tl.IAC + tl.SB + tl.IAC + tl.SE,
350 tl.IAC + tl.SB + tl.IAC + tl.IAC + tl.IAC + tl.SE,
[all …]
/device/linaro/bootloader/edk2/StdLib/LibC/Main/
Dbswap64.c38 u_int32_t tl, th; in bswap64()
41 tl = bswap32((u_int32_t)((x >> 32) & 0x00000000ffffffffULL)); in bswap64()
42 return ((u_int64_t)th << 32) | tl; in bswap64()
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlvm.c309 size_t tl = tsvalue(top-1)->len; in luaV_concat() local
315 if (l >= (MAX_SIZET/sizeof(char)) - tl) in luaV_concat()
317 tl += l; in luaV_concat()
319 buffer = luaZ_openspace(L, &G(L)->buff, tl); in luaV_concat()
320 tl = 0; in luaV_concat()
324 memcpy(buffer+tl, svalue(top-i), l * sizeof(char)); in luaV_concat()
325 tl += l; in luaV_concat()
327 setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl)); in luaV_concat()