/device/generic/opengl-transport/host/commands/emugen/ |
D | EntryPoint.cpp | 46 bool EntryPoint::parse(unsigned int lc, const std::string & str) in parse() argument 68 lc, in parse() 104 lc, in parse() 112 fprintf(stderr, "%d: Unknown type: %s\n", lc, vartype.c_str()); in parse() 189 int EntryPoint::validateVarAttr(const std::string& varname, size_t lc) const { in validateVarAttr() 191 fprintf(stderr, "ERROR: %u: Missing variable name in attribute\n", (unsigned int)lc); in validateVarAttr() 197 (unsigned int)lc, varname.c_str(), name().c_str()); in validateVarAttr() 203 int EntryPoint::setAttribute(const std::string &line, size_t lc) in setAttribute() argument 214 err = validateVarAttr(varname, lc); in setAttribute() 224 err = validateVarAttr(varname, lc); in setAttribute() [all …]
|
D | TypeFactory.cpp | 63 int lc = 0; in initFromFile() local 65 lc++; in initFromFile() 75 fprintf(stderr, "Error: %d : missing type name\n", lc); in initFromFile() 82 fprintf(stderr, "Error: %d : missing type width\n", lc); in initFromFile() 89 fprintf(stderr, "Error: %d : missing print-string\n", lc); in initFromFile() 105 …f(stderr, "Error: %d: invalid isPointer definition: 'true' but name does not end with '*'!\n", lc); in initFromFile() 110 …intf(stderr, "Error: %d: invalid isPointer definition: 'false' but name does end with '*'!\n", lc); in initFromFile() 114 …tf(stderr, "Error: %d : invalid isPointer definition, must be either \"true\" or \"false\"\n", lc); in initFromFile() 125 lc, name.c_str(), lc); in initFromFile()
|
D | EntryPoint.h | 33 bool parse(unsigned int lc, const std::string & str); 53 int validateVarAttr(const std::string& varname, size_t lc) const; 54 int setAttribute(const std::string &line, size_t lc); 65 void err(unsigned int lc, const char *msg) { in err() argument 66 fprintf(stderr, "line %d: %s\n", lc, msg); in err()
|
D | ApiGen.cpp | 1465 unsigned int lc = 0; in readSpec() local 1467 lc++; in readSpec() 1469 if (ref.parse(lc, std::string(line))) { in readSpec() 1491 size_t lc = 0; in readAttributes() local 1494 lc++; in readAttributes() 1514 …stderr, "WARNING: %u: attribute of non existant entry point %s\n", (unsigned int)lc, line.c_str()); in readAttributes() 1521 setGlobalAttribute(line, lc); in readAttributes() 1523 currentEntry->setAttribute(line, lc); in readAttributes() 1532 int ApiGen::setGlobalAttribute(const std::string & line, size_t lc) in setGlobalAttribute() argument 1542 fprintf(stderr, "line %u: missing value for base_opcode\n", (unsigned) lc); in setGlobalAttribute() [all …]
|
D | ApiGen.h | 94 int setGlobalAttribute(const std::string & line, size_t lc);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test__locale.py | 76 for li, lc in ((RADIXCHAR, "decimal_point"), 78 self.numeric_tester('nl_langinfo', nl_langinfo(li), lc, loc) 87 for lc in ("decimal_point", "thousands_sep"): 88 self.numeric_tester('localeconv', localeconv()[lc], lc, loc) 98 for li, lc in ((RADIXCHAR, "decimal_point"), 101 li_radixchar = localeconv()[lc]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ipf/ |
D | IpfCpuCache.s | 53 mov loc2 = ar.lc 74 mov ar.lc = loc4;; 84 mov ar.lc = loc2
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ipf/ |
D | InternalFlushCacheRange.s | 58 mov loc2 = ar.lc 79 mov ar.lc = loc4;; 89 mov ar.lc = loc2
|
D | ReadAr.s | 102 (p50) mov ret0=ar.lc // ar65
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ipf/ |
D | FlushCacheRange.s | 59 mov loc2 = ar.lc 80 mov ar.lc = loc4;; 90 mov ar.lc = loc2
|
D | CpuFlushTlb.s | 45 mov ar.lc = r10 // LC <- count2
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | _LWPCookieJar.py | 126 lc = k.lower() 128 lc = None 130 if (lc in value_attrs) or (lc in boolean_attrs): 131 k = lc
|
D | cookielib.py | 476 lc = k.lower() 477 if lc in known_attrs: 478 k = lc 1384 lc = k.lower() 1386 if lc in value_attrs or lc in boolean_attrs: 1387 k = lc
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/build_hikey/hifi_hikey_lsp/ |
D | specs | 21 -lc -lgloss -lminrt -lc -lhandler-reset -lhandlers-board -lminrt -lhal -lc
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | trees.c | 1022 int _tr_tally (s, dist, lc) in _tr_tally() argument 1025 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */ 1028 s->l_buf[s->last_lit++] = (uch)lc; 1031 s->dyn_ltree[lc].Freq++; 1037 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) && 1040 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++; 1078 int lc; /* match length or unmatched char (if dist == 0) */ local 1085 lc = s->l_buf[lx++]; 1087 send_code(s, lc, ltree); /* send a literal byte */ 1088 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | trees.c | 1010 int ZLIB_INTERNAL _tr_tally (s, dist, lc) in _tr_tally() argument 1013 unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */ 1016 s->l_buf[s->last_lit++] = (uch)lc; 1019 s->dyn_ltree[lc].Freq++; 1025 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) && 1028 s->dyn_ltree[_length_code[lc]+LITERALS+1].Freq++; 1066 int lc; /* match length or unmatched char (if dist == 0) */ local 1073 lc = s->l_buf[lx++]; 1075 send_code(s, lc, ltree); /* send a literal byte */ 1076 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); [all …]
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseCpuLib/Ipf/ |
D | CpuFlushTlb.s | 44 mov ar.lc = r10 // LC <- count2
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
D | LzmaEnc.h | 21 int lc; /* 0 <= lc <= 8, default = 3 */ member
|
D | LzmaDec.c | 123 #define LzmaProps_GetNumProbs(p) (Literal + ((UInt32)LZMA_LIT_SIZE << ((p)->lc + (p)->lp))) 148 unsigned lc = p->prop.lc; in LzmaDec_DecodeReal() local 176 prob += ((UInt32)LZMA_LIT_SIZE * (((processedPos & lpMask) << lc) + in LzmaDec_DecodeReal() 177 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc)))); in LzmaDec_DecodeReal() 603 ((((p->processedPos) & ((1 << (p->prop.lp)) - 1)) << p->prop.lc) + in LzmaDec_TryDummy() 604 (p->dic[(p->dicPos == 0 ? p->dicBufSize : p->dicPos) - 1] >> (8 - p->prop.lc)))); in LzmaDec_TryDummy() 1014 p->lc = d % 9; in LzmaProps_Decode()
|
D | LzmaDec.h | 28 unsigned lc, lp, pb; member
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
D | LzmaDec.c | 125 #define LzmaProps_GetNumProbs(p) (Literal + ((UInt32)LZMA_LIT_SIZE << ((p)->lc + (p)->lp))) 150 unsigned lc = p->prop.lc; in LzmaDec_DecodeReal() local 178 prob += ((UInt32)LZMA_LIT_SIZE * (((processedPos & lpMask) << lc) + in LzmaDec_DecodeReal() 179 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc)))); in LzmaDec_DecodeReal() 605 ((((p->processedPos) & ((1 << (p->prop.lp)) - 1)) << p->prop.lc) + in LzmaDec_TryDummy() 606 (p->dic[(p->dicPos == 0 ? p->dicBufSize : p->dicPos) - 1] >> (8 - p->prop.lc)))); in LzmaDec_TryDummy() 1016 p->lc = d % 9; in LzmaProps_Decode()
|
D | LzmaDec.h | 28 unsigned lc, lp, pb; member
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
D | LzmaDec.c | 125 #define LzmaProps_GetNumProbs(p) (Literal + ((UInt32)LZMA_LIT_SIZE << ((p)->lc + (p)->lp))) 150 unsigned lc = p->prop.lc; in LzmaDec_DecodeReal() local 178 prob += ((UInt32)LZMA_LIT_SIZE * (((processedPos & lpMask) << lc) + in LzmaDec_DecodeReal() 179 (dic[(dicPos == 0 ? dicBufSize : dicPos) - 1] >> (8 - lc)))); in LzmaDec_DecodeReal() 605 ((((p->processedPos) & ((1 << (p->prop.lp)) - 1)) << p->prop.lc) + in LzmaDec_TryDummy() 606 (p->dic[(p->dicPos == 0 ? p->dicBufSize : p->dicPos) - 1] >> (8 - p->prop.lc)))); in LzmaDec_TryDummy() 1016 p->lc = d % 9; in LzmaProps_Decode()
|
D | LzmaDec.h | 28 unsigned lc, lp, pb; member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | ltable.c | 235 int lc = 0; /* counter */ in numusearray() local 245 lc++; in numusearray() 247 nums[lg] += lc; in numusearray() 248 ause += lc; in numusearray()
|