/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _l_o_c_a.py | 22 locations = array.array(format) 23 locations.fromstring(data) 24 if sys.byteorder != "big": locations.byteswap() 27 for i in range(len(locations)): 28 l.append(locations[i] * 2) 29 locations = l 30 if len(locations) < (ttFont['maxp'].numGlyphs + 1): 32 len(locations) - 1, ttFont['maxp'].numGlyphs) 33 self.locations = locations 37 max_location = max(self.locations) [all …]
|
D | G__l_o_c.py | 33 self.locations = array.array('I' if flags & 1 else 'H') 34 self.locations.fromstring(data[:len(data) - self.numAttribs * (flags & 2)]) 35 if sys.byteorder != "big": self.locations.byteswap() 43 flags=(bool(self.attribIds) << 1) + (self.locations.typecode == 'I'), 45 if sys.byteorder != "big": self.locations.byteswap() 46 data += self.locations.tostring() 47 if sys.byteorder != "big": self.locations.byteswap() 54 def set(self, locations): argument 55 long_format = max(locations) >= 65536 56 self.locations = array.array('I' if long_format else 'H', locations) [all …]
|
D | E_B_L_C_.py | 421 dataPairs = list(filter(isValidLocation, zip(self.names, self.locations))) 422 self.names, self.locations = list(map(list, zip(*dataPairs))) 444 self.locations = list(zip(modifiedOffsets, modifiedOffsets[1:])) 453 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]): 463 locQueue = deque(self.locations) 533 self.locations = list(zip(offsets, offsets[1:])) 541 self.imageDataOffset = min(next(iter(zip(*self.locations)))) 565 self.locations = list(zip(offsets, offsets[1:])) 572 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]): 575 offsets = list(self.locations[0]) + [loc[1] for loc in self.locations[1:]] [all …]
|
/external/v8/src/compiler/ |
D | linkage.cc | 240 LocationSignature::Builder locations(zone, static_cast<size_t>(return_count), in GetCEntryStubCallDescriptor() local 244 if (locations.return_count_ > 0) { in GetCEntryStubCallDescriptor() 245 locations.AddReturn(regloc(kReturnRegister0, MachineType::AnyTagged())); in GetCEntryStubCallDescriptor() 247 if (locations.return_count_ > 1) { in GetCEntryStubCallDescriptor() 248 locations.AddReturn(regloc(kReturnRegister1, MachineType::AnyTagged())); in GetCEntryStubCallDescriptor() 250 if (locations.return_count_ > 2) { in GetCEntryStubCallDescriptor() 251 locations.AddReturn(regloc(kReturnRegister2, MachineType::AnyTagged())); in GetCEntryStubCallDescriptor() 256 locations.AddParam(LinkageLocation::ForCallerFrameSlot( in GetCEntryStubCallDescriptor() 260 locations.AddParam( in GetCEntryStubCallDescriptor() 264 locations.AddParam( in GetCEntryStubCallDescriptor() [all …]
|
D | c-linkage.cc | 150 LocationSignature::Builder locations(zone, msig->return_count(), in GetSimplifiedCDescriptor() local 173 CHECK_GE(2, locations.return_count_); in GetSimplifiedCDescriptor() 175 if (locations.return_count_ > 0) { in GetSimplifiedCDescriptor() 176 locations.AddReturn(LinkageLocation::ForRegister(kReturnRegister0.code(), in GetSimplifiedCDescriptor() 179 if (locations.return_count_ > 1) { in GetSimplifiedCDescriptor() 180 locations.AddReturn(LinkageLocation::ForRegister(kReturnRegister1.code(), in GetSimplifiedCDescriptor() 202 locations.AddParam(LinkageLocation::ForRegister(kParamRegisters[i].code(), in GetSimplifiedCDescriptor() 205 locations.AddParam(LinkageLocation::ForCallerFrameSlot( in GetSimplifiedCDescriptor() 235 locations.Build(), // location_sig in GetSimplifiedCDescriptor()
|
/external/fonttools/Lib/fontTools/varLib/ |
D | models.py | 192 def __init__(self, locations, axisOrder=None): argument 193 if len(set(tuple(sorted(l.items())) for l in locations)) != len(locations): 196 self.origLocations = locations 199 locations = [{k:v for k,v in loc.items() if v != 0.} for loc in locations] 200 keyFunc = self.getMasterLocationsSortKeyFunc(locations, axisOrder=self.axisOrder) 201 self.locations = sorted(locations, key=keyFunc) 204 self.mapping = [self.locations.index(l) for l in locations] 205 self.reverseMapping = [locations.index(l) for l in self.locations] 221 def getMasterLocationsSortKeyFunc(locations, axisOrder=[]): argument 222 assert {} in locations, "Base master not found." [all …]
|
D | plot.py | 25 def _plotLocationsDots(locations, axes, subplot, **kwargs): argument 26 for loc, color in zip(locations, cycle(pyplot.cm.Set1.colors)): 48 def plotLocations(locations, fig, names=None, **kwargs): argument 49 n = len(locations) 54 names = [None] * len(locations) 56 model = VariationModel(locations) 59 axes = sorted(locations[0].keys()) 90 _plotLocationsDots(model.locations, [axis], subplot) 126 _plotLocationsDots(model.locations, [ax1, ax2], axis3D) 131 locations = [s.location for s in doc.sources] [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/ |
D | stackmap-dump.test | 31 CHECK-NEXT: 12 locations: 47 CHECK-NEXT: 2 locations: 53 CHECK-NEXT: 2 locations: 59 CHECK-NEXT: 2 locations: 65 CHECK-NEXT: 2 locations: 71 CHECK-NEXT: 2 locations: 77 CHECK-NEXT: 2 locations: 83 CHECK-NEXT: 17 locations: 104 CHECK-NEXT: 17 locations: 125 CHECK-NEXT: 1 locations: [all …]
|
/external/scapy/scapy/contrib/ |
D | pnio_rtc.py | 276 locations = {} 280 loc = locations[comm] = [] 295 return locations 298 def analyse_profisafe(packets, locations=None): argument 308 if not locations: 309 locations = PNIORealTime.find_data(packets) 310 entropies = PNIORealTime.data_entropy(packets, locations) 316 for i in range(len(locations[comm])): 318 locations[comm][i] = \ 320 locations[comm][i], entropy [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 117 SmallVector<MachineOperand, 4> locations; member in __anon94b23d1b0211::UserValue 182 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo() 183 if (locations[i].isReg() && in getLocationNo() 184 locations[i].getReg() == LocMO.getReg() && in getLocationNo() 185 locations[i].getSubReg() == LocMO.getSubReg()) in getLocationNo() 188 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo() 189 if (LocMO.isIdenticalTo(locations[i])) in getLocationNo() 191 locations.push_back(LocMO); in getLocationNo() 193 locations.back().clearParent(); in getLocationNo() 195 if (locations.back().isReg()) in getLocationNo() [all …]
|
/external/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 122 SmallVector<MachineOperand, 4> locations; member in __anon4dd7afef0211::UserValue 192 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo() 193 if (locations[i].isReg() && in getLocationNo() 194 locations[i].getReg() == LocMO.getReg() && in getLocationNo() 195 locations[i].getSubReg() == LocMO.getSubReg()) in getLocationNo() 198 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo() 199 if (LocMO.isIdenticalTo(locations[i])) in getLocationNo() 201 locations.push_back(LocMO); in getLocationNo() 203 locations.back().clearParent(); in getLocationNo() 205 if (locations.back().isReg()) in getLocationNo() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 160 SmallVector<MachineOperand, 4> locations; member in __anonaf2129470211::UserValue 238 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo() 239 if (locations[i].isReg() && in getLocationNo() 240 locations[i].getReg() == LocMO.getReg() && in getLocationNo() 241 locations[i].getSubReg() == LocMO.getSubReg()) in getLocationNo() 244 for (unsigned i = 0, e = locations.size(); i != e; ++i) in getLocationNo() 245 if (LocMO.isIdenticalTo(locations[i])) in getLocationNo() 247 locations.push_back(LocMO); in getLocationNo() 249 locations.back().clearParent(); in getLocationNo() 251 if (locations.back().isReg()) { in getLocationNo() [all …]
|
/external/deqp/doc/testspecs/GL3/ |
D | functional.fragment_out_location.txt | 27 + Use of maximum output locations 28 + Binding locations at different times 32 + Mixed layout locations and bindings 33 + Relinking with changing locations 40 + Rendering using all locations 44 Tests create program, bind locations at different times before and after
|
/external/v8/tools/turbolizer/src/ |
D | code-view.ts | 50 const locations = []; 52 locations.push(sourcePosition); 53 sourceResolver.addInliningPositions(sourcePosition, locations); 55 if (locations.length == 0) return; 56 view.selection.select(locations, selected); 58 broker.broadcastSourcePositionSelect(this, locations, selected); 60 brokeredSourcePositionSelect: function (locations, selected) { 62 for (const location of locations) {
|
/external/u-boot/common/ |
D | splash_source.c | 280 struct splash_location *locations, uint size) in select_splash_location() argument 285 if (!locations || size == 0) in select_splash_location() 290 return &locations[0]; in select_splash_location() 293 if (!strcmp(locations[i].name, env_splashsource)) in select_splash_location() 294 return &locations[i]; in select_splash_location() 384 int splash_source_load(struct splash_location *locations, uint size) in splash_source_load() argument 400 splash_location = select_splash_location(locations, size); in splash_source_load()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | store-private.ll | 159 ; they might be different locations 170 ; they might be different locations 209 ; they might be different locations 220 ; they might be different locations 258 ; they might be different locations 264 ; they might be different locations 270 ; they might be different locations 281 ; they might be different locations 287 ; they might be different locations 293 ; they might be different locations [all …]
|
/external/fonttools/Tests/varLib/ |
D | models_test.py | 140 self, locations, axisOrder, sortedLocs, supports, deltaWeights argument 142 model = VariationModel(locations, axisOrder=axisOrder) 144 assert model.locations == sortedLocs
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
D | Jdk14Logger.java | 93 StackTraceElement locations[]=dummyException.getStackTrace(); in log() local 97 if( locations!=null && locations.length >2 ) { in log() 98 StackTraceElement caller=locations[2]; in log()
|
/external/mockito/src/main/java/org/mockito/internal/exceptions/ |
D | Reporter.java | 362 …vocations(int wantedCount, int actualCount, DescribedInvocation wanted, List<Location> locations) { in tooManyActualInvocations() argument 363 … String message = createTooManyInvocationsMessage(wantedCount, actualCount, wanted, locations); in tooManyActualInvocations() 396 private static String createAllLocationsMessage(List<Location> locations) { in createAllLocationsMessage() argument 397 if (locations == null) { in createAllLocationsMessage() 401 for (Location location : locations) { in createAllLocationsMessage() 409 List<Location> locations) { in createTooLittleInvocationsMessage() argument 415 createAllLocationsMessage(locations) in createTooLittleInvocationsMessage() 425 …internal.reporting.Discrepancy discrepancy, DescribedInvocation wanted, List<Location> locations) { in tooLittleActualInvocationsInOrder() argument 426 String message = createTooLittleInvocationsMessage(discrepancy, wanted, locations); in tooLittleActualInvocationsInOrder()
|
/external/tensorflow/tensorflow/core/protobuf/tpu/ |
D | tpu_embedding_output_layout.proto | 13 // output locations is specified by the 46 // Output locations for each feature loaded from this table. 49 // Output locations for each feature of each table. 53 // Any unused locations in the tensor will be filled with zeros, and
|
/external/u-boot/include/ |
D | splash.h | 52 int splash_source_load(struct splash_location *locations, uint size); 54 static inline int splash_source_load(struct splash_location *locations, in splash_source_load() argument
|
/external/llvm/test/CodeGen/X86/ |
D | deopt-bundles.ll | 11 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 18 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 25 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 32 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 39 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 46 ; STACKMAPS-NEXT: Stack Maps: has 4 locations
|
/external/perf_data_converter/src/ |
D | perf_data_converter_test.cc | 46 std::unordered_map<uint64, const Location*> locations; in GetMapCounts() local 58 locations[location.id()] = &location; in GetMapCounts() 64 if (!locations[id]) { in GetMapCounts() 72 if (locations[id]->mapping_id() != 0) { in GetMapCounts() 74 uint64 addr = locations[id]->address(); in GetMapCounts()
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.uniform_location.txt | 30 + Linkage with locations defined in the vertex shader, fragment shader, both or neither 52 All cases excluding negative and min/max use randomized locations between the 65 These cases have declarations, locations specifiers and verification 67 This includes leaving some locations unassigned.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | deopt-bundles.ll | 11 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 18 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 25 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 32 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 39 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 46 ; STACKMAPS-NEXT: Stack Maps: has 4 locations 191 ; STACKMAPS-NEXT: Stack Maps: has 4 locations
|