| /netbsd-src/sys/external/isc/atheros_hal/ic/ |
| H A D | ah_osdep.c | 255 static struct ale * 258 struct ale *ale; in ath_hal_alq_get() local 261 ale = alq_get(ath_hal_alq, ALQ_NOWAIT); in ath_hal_alq_get() 262 if (ale) { in ath_hal_alq_get() 264 (struct athregrec *) ale->ae_data; in ath_hal_alq_get() 268 alq_post(ath_hal_alq, ale); in ath_hal_alq_get() 273 ale = alq_get(ath_hal_alq, ALQ_NOWAIT); in ath_hal_alq_get() 274 if (!ale) in ath_hal_alq_get() 276 return ale; in ath_hal_alq_get() 285 struct ale *ale = ath_hal_alq_get(ah); in ath_hal_reg_write() local [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | dstruct.d | 551 auto ale = cast(ArrayLiteralExp)exp; in _isZeroInit() local 553 const dim = ale.elements ? ale.elements.dim : 0; in _isZeroInit() 555 if (ale.type.toBasetype().ty == Tarray) // if initializing a dynamic array in _isZeroInit() 560 if (!_isZeroInit(ale[i])) in _isZeroInit()
|
| H A D | constfold.d | 1201 else if (ArrayLiteralExp ale = e1.isArrayLiteralExp()) in ArrayLength() local 1203 size_t dim = ale.elements ? ale.elements.dim : 0; in ArrayLength() 1206 else if (AssocArrayLiteralExp ale = e1.isAssocArrayLiteralExp) in ArrayLength() local 1208 size_t dim = ale.keys.dim; in ArrayLength() 1254 else if (ArrayLiteralExp ale = e1.isArrayLiteralExp()) in Index() local 1256 auto e = ale[cast(size_t)i]; in Index() 1270 if (ArrayLiteralExp ale = e1.isArrayLiteralExp()) in Index() local 1272 if (i >= ale.elements.dim) in Index() 1274 …array index %llu is out of bounds `%s[0 .. %llu]`", i, e1.toChars(), cast(ulong) ale.elements.dim); in Index() 1279 auto e = ale[cast(size_t)i]; in Index() [all …]
|
| H A D | dinterpret.d | 702 auto ale = thisarg.isAddrExp().e1.isArrayLiteralExp(); in interpretFunction() local 703 e = (*ale.elements)[cast(size_t)ne.getInteger()]; in interpretFunction() 982 if (auto ale = e.isArrayLiteralExp()) in stopPointersEscaping() local 984 return stopPointersEscapingFromArray(loc, ale.elements); in stopPointersEscaping() 2534 auto ale = pue.exp().isArrayLiteralExp(); in visit() local 2535 ale.ownedByCtfe = OwnedBy.ctfe; in visit() 2536 result = ale; in visit() 4023 if (auto ale = e1.isArrayLiteralExp()) in interpretAssignToSlice() local 4026 upperbound = ale.elements.dim; in interpretAssignToSlice() 4104 if (auto ale = newval.isArrayLiteralExp()) in interpretAssignToSlice() local [all …]
|
| H A D | semantic2.d | 726 auto ale = (*sle.elements)[0].isArrayLiteralExp(); in doGNUABITagSemantic() local 727 if (ale is null) in doGNUABITagSemantic() 737 const str2 = ale.toString(); in doGNUABITagSemantic() 750 foreach (idx, elem; *ale.elements) in doGNUABITagSemantic() 782 ale.elements.sort!predicate; in doGNUABITagSemantic()
|
| H A D | ctfeexpr.d | 296 if (auto ale = e.isArrayLiteralExp()) in copyLiteral() local 298 auto elements = copyLiteralArray(ale.elements, ale.basis); in copyLiteral() 552 const ale = e.isArrayLiteralExp(); in resolveArrayLength() local 553 return ale.elements ? ale.elements.dim : 0; in resolveArrayLength() 600 auto ale = pue.exp().isArrayLiteralExp(); in createBlockDuplicatedArrayLiteral() local 601 ale.ownedByCtfe = OwnedBy.ctfe; in createBlockDuplicatedArrayLiteral() 602 return ale; in createBlockDuplicatedArrayLiteral() 1568 if (auto ale = e1.isArrayLiteralExp()) in ctfeIndex() local 1570 if (indx >= ale.elements.dim) in ctfeIndex() 1572 …ray index %llu is out of bounds `%s[0 .. %llu]`", indx, e1.toChars(), cast(ulong)ale.elements.dim); in ctfeIndex() [all …]
|
| H A D | dcast.d | 191 if (auto ale = se.e1.isArrayLiteralExp()) in implicitCastTo() local 195 ? tb.nextOf().sarrayOf(ale.elements ? ale.elements.dim : 0) in implicitCastTo() 197 se.e1 = ale.implicitCastTo(sc, tx); in implicitCastTo() 2663 Expression visitAle(ArrayLiteralExp ale) in visitAle() argument 2669 if (ale.basis) in visitAle() 2670 ale.basis = inferType(ale.basis, tn, flag); in visitAle() 2671 for (size_t i = 0; i < ale.elements.dim; i++) in visitAle() 2673 if (Expression e = (*ale.elements)[i]) in visitAle() 2676 (*ale.elements)[i] = e; in visitAle() 2680 return ale; in visitAle() [all …]
|
| H A D | expressionsem.d | 1556 ArrayLengthExp ale = exp.e1.isArrayLengthExp(); in rewriteOpAssign() local 1557 if (ale.e1.isVarExp()) in rewriteOpAssign() 1559 Expression e = opAssignToOp(exp.loc, exp.op, ale, exp.e2); in rewriteOpAssign() 1560 e = new AssignExp(exp.loc, ale.syntaxCopy(), e); in rewriteOpAssign() 1568 auto tmp = copyToTemp(0, "__arraylength", new AddrExp(ale.loc, ale.e1)); in rewriteOpAssign() 1570 Expression e1 = new ArrayLengthExp(ale.loc, new PtrExp(ale.loc, new VarExp(ale.loc, tmp))); in rewriteOpAssign() 1574 e = new CommaExp(exp.loc, new DeclarationExp(ale.loc, tmp), e); in rewriteOpAssign() 2060 ArrayLiteralExp ale; in functionParameters() local 2062 … (ale = a.isArrayLiteralExp()) !is null && ale.elements && ale.elements.length > 0) in functionParameters() 2065 ale.type = ale.type.nextOf().sarrayOf(ale.elements.length); in functionParameters() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | ctfeexpr.c | 264 ArrayLiteralExp *ale = (ArrayLiteralExp *)e; in copyLiteral() local 265 Expressions *elements = copyLiteralArray(ale->elements, ale->basis); in copyLiteral() 536 ArrayLiteralExp *ale = (ArrayLiteralExp *)e; in resolveArrayLength() local 537 return ale->elements ? ale->elements->dim : 0; in resolveArrayLength() 541 AssocArrayLiteralExp *ale = (AssocArrayLiteralExp *)e; in resolveArrayLength() local 542 return ale->keys->dim; in resolveArrayLength() 585 ArrayLiteralExp *ale = (ArrayLiteralExp *)pue->exp(); in createBlockDuplicatedArrayLiteral() local 586 ale->ownedByCtfe = OWNEDctfe; in createBlockDuplicatedArrayLiteral() 587 return ale; in createBlockDuplicatedArrayLiteral() 1593 ArrayLiteralExp *ale = (ArrayLiteralExp *)e1; in ctfeIndex() local [all …]
|
| H A D | dinterpret.c | 2531 ArrayLiteralExp *ale = (ArrayLiteralExp *)pue->exp(); in visit() local 2532 ale->ownedByCtfe = OWNEDctfe; in visit() 2533 result = ale; in visit() 4934 ArrayLiteralExp *ale = (ArrayLiteralExp *)pue->exp(); in interpretVectorToArray() local 4935 ale->ownedByCtfe = OWNEDctfe; in interpretVectorToArray() 4936 return ale; in interpretVectorToArray() 5505 ArrayLiteralExp *ale = (ArrayLiteralExp *)result; in visit() local 5506 ale->ownedByCtfe = OWNEDctfe; in visit() 5509 for (size_t i = 0; i < ale->elements->dim; i++) in visit() 5511 Expression *ex = evaluatePostblit(istate, (*ale->elements)[i]); in visit() [all …]
|
| H A D | constfold.c | 1278 ArrayLiteralExp *ale = (ArrayLiteralExp *)e1; in ArrayLength() local 1279 size_t dim = ale->elements ? ale->elements->dim : 0; in ArrayLength() 1285 AssocArrayLiteralExp *ale = (AssocArrayLiteralExp *)e1; in ArrayLength() local 1286 size_t dim = ale->keys->dim; in ArrayLength() 1337 ArrayLiteralExp *ale = (ArrayLiteralExp *)e1; in Index() local 1338 Expression *e = ale->getElement((size_t)i); in Index() 1355 ArrayLiteralExp *ale = (ArrayLiteralExp *)e1; in Index() local 1356 if (i >= ale->elements->dim) in Index() 1358 … e1->error("array index %llu is out of bounds %s[0 .. %u]", i, e1->toChars(), ale->elements->dim); in Index() 1363 Expression *e = ale->getElement((size_t)i); in Index()
|
| H A D | dcast.c | 147 ArrayLiteralExp *ale = (ArrayLiteralExp *)e->e1; in implicitCastTo() local 151 tx = tb->nextOf()->sarrayOf(ale->elements ? ale->elements->dim : 0); in implicitCastTo() 154 e->e1 = ale->implicitCastTo(sc, tx); in implicitCastTo() 2406 void visit(ArrayLiteralExp *ale) in inferType() 2412 if (ale->basis) in inferType() 2413 ale->basis = inferType(ale->basis, tn, flag); in inferType() 2414 for (size_t i = 0; i < ale->elements->dim; i++) in inferType() 2416 Expression *e = (*ale->elements)[i]; in inferType() 2420 (*ale->elements)[i] = e; in inferType() 2424 result = ale; in inferType() [all …]
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | orion5x-rd88f5182-nas.dts | 61 devbus,ale-wr-ps = <90000>; 83 devbus,ale-wr-ps = <90000>;
|
| H A D | armada-xp-crs326-24g-2s.dtsi | 60 devbus,ale-wr-ps = <60000>;
|
| H A D | armada-xp-crs328-4c-20s-4s.dtsi | 60 devbus,ale-wr-ps = <60000>;
|
| H A D | armada-xp-crs305-1g-4s.dtsi | 60 devbus,ale-wr-ps = <60000>;
|
| H A D | keystone-k2l-evm.dts | 85 ti,davinci-mask-ale = <0x2000>;
|
| H A D | armada-xp-db-dxbc2.dts | 55 devbus,ale-wr-ps = <60000>;
|
| H A D | keystone-k2g-netcp.dtsi | 119 enable-ale;
|
| H A D | armada-xp-db-xc3-24g4xg.dts | 59 devbus,ale-wr-ps = <60000>;
|
| H A D | keystone-k2e-evm.dts | 112 ti,davinci-mask-ale = <0x2000>;
|
| /netbsd-src/usr.sbin/sysinst/arch/mac68k/ |
| H A D | msg.md.pl | 106 wszystkich partycji uzytkownika, ale tylko te uzyteczne w NetBSD, zostaly 129 {Probowales podzielic istniejaca partycje na dwie czesci, ale nie ma na to 151 anomalie. Mozesz je zignorowac i kontynuowac, ale zrobienie tego moze
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/mips/boot/dts/ni/ |
| H A D | 169445.dts | 69 <&gpio1 2 0>, /* ale */
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
| H A D | expr.cc | 929 ArrayLengthExp *ale = (ArrayLengthExp *) e->e1; in visit() local 932 tree ptr = build_address (build_expr (ale->e1)); in visit() 935 Type *etype = ale->e1->type->toBasetype ()->nextOf (); in visit() 939 tree result = build_libcall (libcall, ale->e1->type, 3, in visit() 940 build_typeinfo (ale->loc, ale->e1->type), in visit() 2999 ArrayLiteralExp *ale = ((ArrayLiteralExp *) e->e1); in visit() local 3004 vec_safe_reserve (elms, ale->elements->dim); in visit() 3005 for (size_t i = 0; i < ale->elements->dim; i++) in visit() 3007 Expression *expr = ale->getElement (i); in visit()
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/po/ |
| H A D | sk.po | 331 "Reťazec sa odkazuje na parameter číslo %u, ale ignoruje parameter číslo %u." 406 msgstr "'msgid' používa %%m, ale '%s' nie" 411 msgstr "'msgid' nepoužíva %%m, ale '%s' používa %%m" 532 "V direktíve číslo %u, parameter %u je typu '%s' ale parameter typu '%s' je " 641 "formátovacie značky v 'msgid' predpokladajú mapovanie, ale značky v '%s' " 650 "formátovacie značky v 'msgid' predpokladajú tuple, ale značky v '%s' " 1377 msgstr "táto správa je použitá, ale nie je definovaná..." 1382 msgstr "...ale táto definícia je podobná" 1387 msgstr "táto správa je použitá, ale nie je definovaná v %s" 1776 " --java2 ako --java, ale predpokladať Java2 (JDK 1.2 " [all …]
|