/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
D | TestData.java | 32 protected static final int WS = UCharacterDirection.WHITE_SPACE_NEUTRAL; field in TestData 54 { L, L, WS, L, WS, EN, L, B }, // 0 55 { R, AL, WS, R, AL, WS, R }, // 1 56 { L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 2 57 { L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 3 58 { AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L }, // 4 60 { RLE, WS, R, R, R, WS, PDF, WS, B }, // 6 71 { S, WS, NSM, RLE, WS, L, L, L, WS, LRO, WS, R, R, R, WS, RLO, WS, L, L, 72 L, WS, LRE, WS, R, R, R, WS, PDF, WS, L, L, L, WS, PDF, WS, AL, AL, 73 AL, WS, PDF, WS, L, L, L, WS, PDF, WS, L, L, L, WS, PDF, ON, PDF, [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
D | TestData.java | 35 protected static final int WS = UCharacterDirection.WHITE_SPACE_NEUTRAL; field in TestData 57 { L, L, WS, L, WS, EN, L, B }, // 0 58 { R, AL, WS, R, AL, WS, R }, // 1 59 { L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 2 60 { L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L }, // 3 61 { AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L }, // 4 63 { RLE, WS, R, R, R, WS, PDF, WS, B }, // 6 74 { S, WS, NSM, RLE, WS, L, L, L, WS, LRO, WS, R, R, R, WS, RLO, WS, L, L, 75 L, WS, LRE, WS, R, R, R, WS, PDF, WS, L, L, L, WS, PDF, WS, AL, AL, 76 AL, WS, PDF, WS, L, L, L, WS, PDF, WS, L, L, L, WS, PDF, ON, PDF, [all …]
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | cbididat.c | 42 L, L, WS, L, WS, EN, L, B 57 R, AL, WS, R, AL, WS, R 72 L, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L 87 L, AL, AL, AL, L, AL, AL, L, WS, EN, CS, WS, EN, CS, EN, WS, L, L 102 AL, R, AL, WS, EN, CS, WS, EN, CS, EN, WS, R, R, WS, L, L 148 RLE, WS, R, R, R, WS, PDF, WS, B 205 S, WS, NSM, RLE, WS, L, L, L, WS, LRO, WS, R, R, R, WS, RLO, WS, L, L, L, /* 20 entries */ 206 WS, LRE, WS, R, R, R, WS, PDF, WS, L, L, L, WS, PDF, WS, AL, AL, AL, WS, PDF, /* 20 entries */ 207 WS, L, L, L, WS, PDF, WS, L, L, L, WS, PDF, ON, PDF, BN, BN, ON, PDF /* 18 entries */ 226 NSM, WS, L, L, L, L, L, L, L, WS, L, L, L, L, WS, [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/unicode/ |
D | BidiTest.txt | 122 WS; 3 141 WS; 4 243 WS LRE; 3 244 WS LRO; 3 245 WS RLE; 3 246 WS RLO; 3 247 WS PDF; 3 248 WS BN; 3 326 WS LRE; 4 327 WS LRO; 4 [all …]
|
/third_party/icu/icu4c/source/test/testdata/ |
D | BidiTest.txt | 122 WS; 3 141 WS; 4 243 WS LRE; 3 244 WS LRO; 3 245 WS RLE; 3 246 WS RLO; 3 247 WS PDF; 3 248 WS BN; 3 326 WS LRE; 4 327 WS LRO; 4 [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/ |
D | BidiTest.txt | 122 WS; 3 141 WS; 4 243 WS LRE; 3 244 WS LRO; 3 245 WS RLE; 3 246 WS RLO; 3 247 WS PDF; 3 248 WS BN; 3 326 WS LRE; 4 327 WS LRO; 4 [all …]
|
/third_party/musl/src/string/ |
D | memmove.c | 6 #define WS (sizeof(WT)) macro 19 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in memmove() 20 while ((uintptr_t)d % WS) { in memmove() 24 for (; n>=WS; n-=WS, d+=WS, s+=WS) *(WT *)d = *(WT *)s; in memmove() 30 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in memmove() 31 while ((uintptr_t)(d+n) % WS) { in memmove() 35 while (n>=WS) n-=WS, *(WT *)(d+n) = *(WT *)(s+n); in memmove()
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
D | memmove.c | 6 #define WS (sizeof(WT)) macro 19 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in memmove() 20 while ((uintptr_t)d % WS) { in memmove() 24 for (; n>=WS; n-=WS, d+=WS, s+=WS) *(WT *)d = *(WT *)s; in memmove() 30 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in memmove() 31 while ((uintptr_t)(d+n) % WS) { in memmove() 35 while (n>=WS) n-=WS, *(WT *)(d+n) = *(WT *)(s+n); in memmove()
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
D | memmove.c | 6 #define WS (sizeof(WT)) macro 23 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in __memmove() 24 while ((uintptr_t)d % WS) { in __memmove() 28 for (; n>=WS; n-=WS, d+=WS, s+=WS) *(WT *)d = *(WT *)s; in __memmove() 34 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in __memmove() 35 while ((uintptr_t)(d+n) % WS) { in __memmove() 39 while (n>=WS) n-=WS, *(WT *)(d+n) = *(WT *)(s+n); in __memmove()
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
D | memmove.c | 6 #define WS (sizeof(WT)) macro 23 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in __memmove() 24 while ((uintptr_t)d % WS) { in __memmove() 28 for (; n>=WS; n-=WS, d+=WS, s+=WS) *(WT *)d = *(WT *)s; in __memmove() 34 if ((uintptr_t)s % WS == (uintptr_t)d % WS) { in __memmove() 35 while ((uintptr_t)(d+n) % WS) { in __memmove() 39 while (n>=WS) n-=WS, *(WT *)(d+n) = *(WT *)(s+n); in __memmove()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | WasmObjectWriter.cpp | 414 const auto &WS = static_cast<const MCSymbolWasm &>(S); in executePostLayoutBinding() local 415 if (WS.isDefined() && WS.isFunction() && !WS.isVariable()) { in executePostLayoutBinding() 1145 const auto &WS = static_cast<const MCSymbolWasm &>(S); in writeObject() local 1149 if (WS.isFunction()) in writeObject() 1150 registerFunctionType(WS); in writeObject() 1152 if (WS.isEvent()) in writeObject() 1153 registerEventType(WS); in writeObject() 1155 if (WS.isTemporary()) in writeObject() 1159 if (!WS.isDefined() && !WS.isComdat()) { in writeObject() 1160 if (WS.isFunction()) { in writeObject() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
D | RegisterFile.cpp | 149 WriteState &WS = *Write.getWriteState(); in addRegisterWrite() local 150 MCPhysReg RegID = WS.getRegisterID(); in addRegisterWrite() 171 bool IsWriteZero = WS.isWriteZero(); in addRegisterWrite() 172 bool IsEliminated = WS.isEliminated(); in addRegisterWrite() 175 WS.setPRF(RRI.IndexPlusCost.first); in addRegisterWrite() 181 if (!WS.clearsSuperRegisters()) { in addRegisterWrite() 191 OtherWS->addUser(OtherWrite.getSourceIndex(), &WS); in addRegisterWrite() 198 WS.clearsSuperRegisters() ? RegID : WS.getRegisterID(); in addRegisterWrite() 227 if (!WS.clearsSuperRegisters()) in addRegisterWrite() 244 const WriteState &WS, MutableArrayRef<unsigned> FreedPhysRegs) { in removeRegisterWrite() argument [all …]
|
/third_party/openssl/crypto/conf/ |
D | keysets.pl | 17 my $WS = 0x0010; 37 $v |= $WS if $c =~ /[ \t\r\n]/; 50 $v |= $WS if $c =~ /[ \t\r\n]/; 77 #define CONF_WS $WS
|
/third_party/libsnd/cmake/ |
D | CMakeAutoGenScript.cmake | 4 set(WS " \t\r\n") variable 23 …string(REGEX MATCH "autogen definitions ([a-zA-Z\\._-]+);[${WS}]*" TEMPLATE_MATCH "${DEFINITION_CO… 39 …string(REGEX MATCH "([a-zA-Z_][a-zA-Z0-9_]*)[${WS}]*=[${WS}]*{[${WS}]*" GROUPSTART_MATCH "${DEFINI… 51 …-zA-Z_][a-zA-Z0-9_]*)[${WS}]*=[${WS}]*(([\"']([${WS}a-zA-Z0-9_%\\\"<>\(\)\\.*+/?:,\\-]+)[\"'])|([a… 70 string(REGEX MATCH "^[${WS}]*}[${WS}]*;[${WS}]*" GROUPEND_MATCH "${DEFINITION_CONTENTS}") 82 …string(REGEX MATCH "\\[\\+[${WS}]*([ a-zA-Z0-9=_$%\\(\\)\"\\+\\-]+)[${WS}]*\\+\\]" MATCH_GROUP "${… 339 string(REGEX MATCH "^CASE[${WS}]+\\(([a-zA-Z]+)\\)" CASE_MATCH "${GROUP_MATCH}") 350 string(REGEX MATCH "^==[${WS}]+([a-zA-Z_][a-zA-Z0-9_]*)" CASE_MATCH "${GROUP_MATCH}") 390 … string(REGEX MATCH "\\(([a-zA-Z0-9_$%\"${WS}\\+\\-]+)\\)" PARENTHESE_MATCH "${GROUP_MATCH}") 397 string(REGEX MATCH "\\\"([a-zA-Z_${WS}]+)\\\"" KEY_MATCH "${KEY_QUOTED}")
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
D | Instruction.cpp | 143 for (const WriteState &WS : getDefs()) { in computeCriticalRegDep() local 144 const CriticalDependency &WriteCRD = WS.getCriticalRegDep(); in computeCriticalRegDep() 175 for (WriteState &WS : getDefs()) in execute() 176 WS.onInstructionIssued(IID); in execute()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/ |
D | RetireStage.cpp | 59 for (const WriteState &WS : Inst.getDefs()) in notifyInstructionRetired() local 60 PRF.removeRegisterWrite(WS, FreedRegs); in notifyInstructionRetired()
|
D | DispatchStage.cpp | 123 for (WriteState &WS : IS.getDefs()) in dispatch() 124 PRF.addRegisterWrite(WriteRef(IR.getSourceIndex(), &WS), RegisterFiles); in dispatch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/ |
D | RegisterFile.h | 204 void removeRegisterWrite(const WriteState &WS, 212 bool tryEliminateMove(WriteState &WS, ReadState &RS);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
D | Instruction.h | 608 WriteRef(unsigned SourceIndex, WriteState *WS) : Data(SourceIndex, WS) {} in WriteRef() argument 624 const WriteState *WS = getWriteState(); in isAvailable() local 625 return !WS || WS->isExecuted(); in isAvailable()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-binance/ |
D | README.md | 41 [2021/08/15 06:42:40:8410] N: LWS: 4.2.99-v4.2.0-156-g8f352f65e8, NET CLI SRV H1 H2 WS SS-JSON-POL … 48 [2021/08/15 06:42:40:8472] N: ++ [495958|wsicli|0|WS/h1/fstream.binance.com/([495958|wsiSScli|0|bi…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 239 LexicalScope *WS = WorkStack.back(); in constructScopeNest() local 240 const SmallVectorImpl<LexicalScope *> &Children = WS->getChildren(); in constructScopeNest() 251 WS->setDFSOut(++Counter); in constructScopeNest()
|
/third_party/skia/third_party/externals/freetype/src/autofit/ |
D | aftypes.h | 202 #define WRITING_SYSTEM( ws, WS ) \ argument 203 AF_WRITING_SYSTEM_ ## WS,
|
/third_party/flutter/skia/third_party/externals/icu/source/data/curr/ |
D | en_WS.txt | 7 "WS$",
|
/third_party/skia/third_party/externals/icu/source/data/curr/ |
D | en_WS.txt | 8 "WS$",
|
/third_party/icu/icu4c/source/data/curr/ |
D | en_WS.txt | 8 "WS$",
|