Symbol: L
headers/libs/zydis/Zydis/DecoderTypes.h
1365
ZyanU8 L;
headers/libs/zydis/Zydis/DecoderTypes.h
790
ZyanU8 L;
headers/libs/zydis/Zydis/DecoderTypes.h
835
ZyanU8 L;
headers/libs/zydis/Zydis/DecoderTypes.h
900
ZyanU8 L;
headers/posix/stdint.h
148
#define INT64_C(value) value ## L
headers/posix/stdint.h
150
#define INTMAX_C(value) value ## L
src/add-ons/kernel/file_systems/ntfs/libntfs/runlist.c
1775
#define MKRL(R,V,L,S) \
src/add-ons/kernel/file_systems/ntfs/libntfs/runlist.c
1777
(R)->lcn = L; \
src/add-ons/media/media-add-ons/opensound/OpenSoundNode.cpp
1127
BAutolock L(fDevice->Locker());
src/add-ons/media/media-add-ons/opensound/OpenSoundNode.cpp
1262
BAutolock L(fDevice->Locker());
src/add-ons/media/media-add-ons/opensound/OpenSoundNode.cpp
2389
BAutolock L(fDevice->Locker());
src/add-ons/media/media-add-ons/opensound/OpenSoundNode.cpp
2428
BAutolock L(fDevice->Locker());
src/add-ons/media/media-add-ons/opensound/OpenSoundNode.cpp
2483
BAutolock L(fDevice->Locker());
src/add-ons/media/media-add-ons/opensound/OpenSoundNode.cpp
628
BAutolock L(fDevice->Locker());
src/add-ons/media/media-add-ons/opensound/OpenSoundNode.cpp
846
BAutolock L(fDevice->Locker());
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
137
L = (int) (nTemp & 0x7FFFFF) - 0x800000;
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
139
L = (int) (nTemp & 0x7FFFFF);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
142
if (labs(L) > *pPeakLevel)
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
143
*pPeakLevel = labs(L);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
148
pOutputY[nBlockIndex] = L - R;
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
189
L = (int) *((int16 *) pRawData);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
194
if (labs(L) > LPeak)
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
195
LPeak = labs(L);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
200
pOutputY[nBlockIndex] = L - R;
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
388
unsigned char *L = (unsigned char *) &pRawData[1];
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
392
L+=2, R+=2) {
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
397
*L = (unsigned char) (*R + pInputY[SampleIndex]);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
398
CRC = (CRC >> 8) ^ CRC32_TABLE[(CRC & 0xFF) ^ *L];
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
402
L+=2, R+=2) {
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
407
*L = (unsigned char) (*R + pInputY[SampleIndex]);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
408
CRC = (CRC >> 8) ^ CRC32_TABLE[(CRC & 0xFF) ^ *L];
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
66
int R,L;
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
75
L = (int) (*((unsigned char *) (pRawData + 1)) - 128);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
81
if (labs(L) > *pPeakLevel)
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
82
*pPeakLevel = labs(L);
src/add-ons/media/plugins/ape_reader/MAClib/Prepare.cpp
87
pOutputY[nBlockIndex] = L - R;
src/add-ons/translators/psd/PSDLoader.cpp
405
double L = imageData[0][index] / 255.0 * 100.0;
src/add-ons/translators/psd/PSDLoader.cpp
409
double Y = L * (1.0 / 116.0) + 16.0 / 116.0;
src/add-ons/translators/psd/PSDLoader.cpp
415
Y = L > 8.0 ? Y * Y * Y : L * (27.0 / 24389.0);
src/add-ons/translators/wonderbrush/support/lab_convert.cpp
134
lab2rgb(float L, float a, float b, uint8& R, uint8& G, uint8& B)
src/add-ons/translators/wonderbrush/support/lab_convert.cpp
136
float P = (L + 16) / 116;
src/add-ons/translators/wonderbrush/support/lab_convert.cpp
172
rgb2lab(uint8 R, uint8 G, uint8 B, float& L, float& a, float& b)
src/add-ons/translators/wonderbrush/support/lab_convert.cpp
184
L = 116.0 * pow(Yq, 1.0 / 3.0) - 16;
src/add-ons/translators/wonderbrush/support/lab_convert.cpp
186
L = 903.3 * Yq;
src/add-ons/translators/wonderbrush/support/lab_convert.h
14
void lab2rgb(float L, float a, float b, uint8& R, uint8& G, uint8& B);
src/add-ons/translators/wonderbrush/support/lab_convert.h
18
lab2rgb(uint8 L, uint8 a, uint8 b, uint8& R, uint8& G, uint8& B)
src/add-ons/translators/wonderbrush/support/lab_convert.h
20
float CIEL = ((float)L / 255.0) * 100.0;
src/add-ons/translators/wonderbrush/support/lab_convert.h
26
void rgb2lab(uint8 R, uint8 G, uint8 B, float& L, float& a, float& b);
src/add-ons/translators/wonderbrush/support/lab_convert.h
30
rgb2lab(uint8 R, uint8 G, uint8 B, uint8& L, uint8& a, uint8& b)
src/add-ons/translators/wonderbrush/support/lab_convert.h
34
L = uint8((CIEL / 100.0) * 255.0);
src/apps/haikudepot/model/Logger.h
19
#define HDLOGLEVELCHAR(L) ( \
src/apps/haikudepot/model/Logger.h
20
L == LOG_LEVEL_INFO ? 'I' \
src/apps/haikudepot/model/Logger.h
21
: L == LOG_LEVEL_DEBUG ? 'D' \
src/apps/haikudepot/model/Logger.h
22
: L == LOG_LEVEL_TRACE ? 'T' \
src/apps/haikudepot/model/Logger.h
23
: L == LOG_LEVEL_ERROR ? 'E' \
src/apps/haikudepot/model/Logger.h
37
#define HDLOGPREFIX(L) printf("@%08" B_PRId64 " {%c} <t:%" B_PRIu32 "> ", \
src/apps/haikudepot/model/Logger.h
39
HDLOGLEVELCHAR(L), \
src/apps/haikudepot/model/Logger.h
43
#define HDLOG(L, M...) do { if (Logger::IsLevelEnabled(L)) { \
src/apps/haikudepot/model/Logger.h
44
HDLOGPREFIX(L) \
src/bin/network/ftpd/ftpcmd.y
1016
| L
src/bin/network/ftpd/ftpcmd.y
1021
| L SP byte_size
src/bin/network/ftpd/ftpcmd.y
1027
| L byte_size
src/bin/network/ftpd/ftpcmd.y
112
L N P R S T
src/bin/network/ftpd/ftpcmd.y
1465
return (L);
src/libs/zydis/Zydis/Decoder.c
430
instruction->raw.xop.L = (data[2] >> 2) & 0x01;
src/libs/zydis/Zydis/Decoder.c
438
context->vector_unified.L = instruction->raw.xop.L;
src/libs/zydis/Zydis/Decoder.c
439
context->vector_unified.LL = instruction->raw.xop.L;
src/libs/zydis/Zydis/Decoder.c
478
instruction->raw.vex.L = (data[2] >> 2) & 0x01;
src/libs/zydis/Zydis/Decoder.c
490
instruction->raw.vex.L = (data[1] >> 2) & 0x01;
src/libs/zydis/Zydis/Decoder.c
513
context->vector_unified.L = instruction->raw.vex.L;
src/libs/zydis/Zydis/Decoder.c
514
context->vector_unified.LL = instruction->raw.vex.L;
src/libs/zydis/Zydis/Decoder.c
573
instruction->raw.evex.L = (data[3] >> 5) & 0x01;
src/system/kernel/arch/arm/arch_elf.cpp
334
addr_t L = 0; // PLT address
src/system/kernel/arch/arm/arch_elf.cpp
351
if (L == 0) { \
src/system/kernel/arch/m68k/arch_elf.cpp
155
addr_t L = 0; // PLT address
src/system/kernel/arch/m68k/arch_elf.cpp
170
if (L == 0) { \
src/system/kernel/arch/m68k/arch_elf.cpp
298
write_32(P, (L + A - P));
src/system/kernel/arch/m68k/arch_elf.cpp
303
if (write_16_check(P, (L + A - P)))
src/system/kernel/arch/m68k/arch_elf.cpp
310
if (write_8_check(P, (L + A - P)))
src/system/kernel/arch/m68k/arch_elf.cpp
317
write_32(P, (L + A));
src/system/kernel/arch/m68k/arch_elf.cpp
322
if (write_16_check(P, (L + A)))
src/system/kernel/arch/m68k/arch_elf.cpp
329
if (write_8_check(P, (L + A)))
src/system/kernel/arch/ppc/arch_elf.cpp
134
addr_t L = 0; // PLT address
src/system/kernel/arch/ppc/arch_elf.cpp
149
if (L == 0) { \
src/system/kernel/arch/ppc/arch_elf.cpp
335
if (write_low24_check(P, (L + A - P) >> 2))
src/system/kernel/arch/ppc/arch_elf.cpp
342
write_word32(P, L + A);
src/system/kernel/arch/ppc/arch_elf.cpp
347
write_word32(P, L + A - P);
src/system/kernel/arch/ppc/arch_elf.cpp
352
write_half16(P, lo(L + A));
src/system/kernel/arch/ppc/arch_elf.cpp
357
write_half16(P, hi(L + A));
src/system/kernel/arch/ppc/arch_elf.cpp
361
write_half16(P, ha(L + A));
src/system/kernel/arch/sparc/arch_elf.cpp
137
if (L == 0) { \
src/system/kernel/lib/strtod.c
1131
Long L;
src/system/kernel/lib/strtod.c
1219
L = c - '0';
src/system/kernel/lib/strtod.c
1222
L = 10*L + c - '0';
src/system/kernel/lib/strtod.c
1223
if (s - s1 > 8 || L > 19999)
src/system/kernel/lib/strtod.c
1229
e = (int)L;
src/system/kernel/lib/strtod.c
1461
L = word0(rv) & Exp_mask;
src/system/kernel/lib/strtod.c
1463
if (L < Exp_msk1)
src/system/kernel/lib/strtod.c
1465
if (L <= Exp_msk1)
src/system/kernel/lib/strtod.c
1468
L -= Exp_msk1;
src/system/kernel/lib/strtod.c
1470
L = (word0(rv) & Exp_mask) - Exp_msk1;
src/system/kernel/lib/strtod.c
1472
word0(rv) = L | Bndry_mask1;
src/system/kernel/lib/strtod.c
1597
L = aadj;
src/system/kernel/lib/strtod.c
1598
aadj -= L;
src/system/kernel/lib/strtod.c
1832
Long L;
src/system/kernel/lib/strtod.c
2059
L = d;
src/system/kernel/lib/strtod.c
2060
d -= L;
src/system/kernel/lib/strtod.c
2061
*s++ = '0' + (int)L;
src/system/kernel/lib/strtod.c
2076
L = d;
src/system/kernel/lib/strtod.c
2077
d -= L;
src/system/kernel/lib/strtod.c
2078
*s++ = '0' + (int)L;
src/system/kernel/lib/strtod.c
2112
L = d / ds;
src/system/kernel/lib/strtod.c
2113
d -= L*ds;
src/system/kernel/lib/strtod.c
2117
L--;
src/system/kernel/lib/strtod.c
2121
*s++ = '0' + (int)L;
src/system/kernel/lib/strtod.c
2124
if (d > ds || (d == ds && L & 1)) {
src/system/kernel/lib/strtod.c
847
Long L;
src/system/kernel/lib/strtod.c
850
L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
src/system/kernel/lib/strtod.c
852
if (L > 0) {
src/system/kernel/lib/strtod.c
855
L |= Exp_msk1 >> 4;
src/system/kernel/lib/strtod.c
857
word0(a) = L;
src/system/kernel/lib/strtod.c
861
L = -L >> Exp_shift;
src/system/kernel/lib/strtod.c
862
if (L < Exp_shift) {
src/system/kernel/lib/strtod.c
863
word0(a) = 0x80000 >> L;
src/system/kernel/lib/strtod.c
867
L -= Exp_shift;
src/system/kernel/lib/strtod.c
868
word1(a) = L >= 31 ? 1 : 1 << (31 - L);
src/system/libroot/posix/crypt/crypto_scrypt_smix.cpp
47
size_t L = len / sizeof(size_t);
src/system/libroot/posix/crypt/crypto_scrypt_smix.cpp
50
for (i = 0; i < L; i++)
src/system/libroot/posix/crypt/crypto_scrypt_smix.cpp
59
size_t L = len / sizeof(size_t);
src/system/libroot/posix/crypt/crypto_scrypt_smix.cpp
62
for (i = 0; i < L; i++)
src/system/libroot/posix/glibc/include/arch/ppc/sysdep.h
216
#define L(x) .L##x
src/system/libroot/posix/glibc/include/arch/sparc/sysdep.h
81
#define LOC(name) .L##name
src/system/libroot/posix/glibc/include/arch/x86/asm-syntax.h
31
# define L(body) .L##body
src/system/libroot/posix/glibc/include/arch/x86/asm-syntax.h
33
# define L(body) .L/**/body
src/system/libroot/posix/glibc/include/arch/x86/asm-syntax.h
37
# define L(body) L##body
src/system/libroot/posix/glibc/include/arch/x86/asm-syntax.h
39
# define L(body) L/**/body
src/system/libroot/posix/glibc/include/arch/x86/sysdep.h
118
#ifndef L
src/system/libroot/posix/glibc/include/arch/x86_64/asm-syntax.h
24
#define L(body) .L##body
src/system/libroot/posix/glibc/include/arch/x86_64/sysdep.h
100
# define L(name) .L##name
src/system/libroot/posix/glibc/include/arch/x86_64/sysdep.h
97
#ifndef L
src/system/libroot/posix/glibc/stdio-common/printf-parsemb.c
38
# define L_(Str) L##Str
src/system/libroot/posix/glibc/stdio-common/printf-prs.c
34
# define MBRLEN(Cp, L, St) __mbrlen (Cp, L, St)
src/system/libroot/posix/glibc/stdio-common/printf-prs.c
45
# define L_(Str) L##Str
src/system/libroot/posix/glibc/stdio-common/vfprintf.c
116
# define L_(Str) L##Str
src/system/libroot/posix/glibc/stdio-common/vfscanf.c
113
# define L_(Str) L##Str
src/system/libroot/posix/glibc/stdlib/strtod.c
100
# define L_(Ch) L##Ch
src/system/libroot/posix/glibc/stdlib/strtol.c
171
# define L_(Ch) L##Ch
src/system/runtime_loader/arch/m68k/arch_relocate.cpp
189
write_32(P, (L + A - P));
src/system/runtime_loader/arch/m68k/arch_relocate.cpp
194
if (write_16_check(P, (L + A - P)))
src/system/runtime_loader/arch/m68k/arch_relocate.cpp
201
if (write_8_check(P, (L + A - P)))
src/system/runtime_loader/arch/m68k/arch_relocate.cpp
208
write_32(P, (L + A));
src/system/runtime_loader/arch/m68k/arch_relocate.cpp
213
if (write_16_check(P, (L + A)))
src/system/runtime_loader/arch/m68k/arch_relocate.cpp
220
if (write_8_check(P, (L + A)))
src/system/runtime_loader/arch/m68k/arch_relocate.cpp
228
final_val = L + A - (addr_t)P;
src/system/runtime_loader/arch/x86/arch_relocate.cpp
64
final_val = L + A - (addr_t)P;
src/tests/system/libroot/posix/tst-wcsnlen.c
25
n = wcsnlen (L##Str, Max); \