/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _l_o_c_a.py | 18 locations = array.array(format) 19 locations.fromstring(data) 21 locations.byteswap() 24 for i in range(len(locations)): 25 l.append(locations[i] * 2) 26 locations = l 27 if len(locations) < (ttFont['maxp'].numGlyphs + 1): 28 …warnings.warn("corrupt 'loca' table, or wrong numGlyphs in 'maxp': %d %d" % (len(locations) - 1, t… 29 self.locations = locations 33 max_location = max(self.locations) [all …]
|
D | E_B_L_C_.py | 415 dataPairs = list(filter(isValidLocation, zip(self.names, self.locations))) 416 self.names, self.locations = list(map(list, zip(*dataPairs))) 438 self.locations = list(zip(modifiedOffsets, modifiedOffsets[1:])) 446 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]): 456 locQueue = deque(self.locations) 526 self.locations = list(zip(offsets, offsets[1:])) 533 self.imageDataOffset = min(zip(*self.locations)[0]) 557 self.locations = list(zip(offsets, offsets[1:])) 563 for curLoc, nxtLoc in zip(self.locations, self.locations[1:]): 566 offsets = list(self.locations[0]) + [loc[1] for loc in self.locations[1:]] [all …]
|
/external/v8/src/compiler/ |
D | linkage.cc | 237 LocationSignature::Builder locations(zone, static_cast<size_t>(return_count), in GetCEntryStubCallDescriptor() local 241 if (locations.return_count_ > 0) { in GetCEntryStubCallDescriptor() 242 locations.AddReturn(regloc(kReturnRegister0, MachineType::AnyTagged())); in GetCEntryStubCallDescriptor() 244 if (locations.return_count_ > 1) { in GetCEntryStubCallDescriptor() 245 locations.AddReturn(regloc(kReturnRegister1, MachineType::AnyTagged())); in GetCEntryStubCallDescriptor() 247 if (locations.return_count_ > 2) { in GetCEntryStubCallDescriptor() 248 locations.AddReturn(regloc(kReturnRegister2, MachineType::AnyTagged())); in GetCEntryStubCallDescriptor() 253 locations.AddParam(LinkageLocation::ForCallerFrameSlot( in GetCEntryStubCallDescriptor() 257 locations.AddParam( in GetCEntryStubCallDescriptor() 261 locations.AddParam( in GetCEntryStubCallDescriptor() [all …]
|
D | wasm-linkage.cc | 280 LocationSignature::Builder locations(zone, fsig->return_count(), in GetWasmCallDescriptor() local 286 const int return_count = static_cast<int>(locations.return_count_); in GetWasmCallDescriptor() 289 locations.AddReturn(rets.Next(ret)); in GetWasmCallDescriptor() 298 locations.AddParam(params.Next(param)); in GetWasmCallDescriptor() 312 locations.Build(), // location_sig in GetWasmCallDescriptor() 341 LocationSignature::Builder locations(zone, return_count, parameter_count); in ReplaceTypeInCallDescriptorWith() local 348 locations.AddReturn(rets.Next(output_type)); in ReplaceTypeInCallDescriptorWith() 351 locations.AddReturn( in ReplaceTypeInCallDescriptorWith() 361 locations.AddParam(params.Next(output_type)); in ReplaceTypeInCallDescriptorWith() 364 locations.AddParam( in ReplaceTypeInCallDescriptorWith() [all …]
|
D | c-linkage.cc | 158 LocationSignature::Builder locations(zone, msig->return_count(), in GetSimplifiedCDescriptor() local 182 CHECK(locations.return_count_ <= 2); in GetSimplifiedCDescriptor() 184 if (locations.return_count_ > 0) { in GetSimplifiedCDescriptor() 185 locations.AddReturn(regloc(kReturnRegister0, msig->GetReturn(0))); in GetSimplifiedCDescriptor() 187 if (locations.return_count_ > 1) { in GetSimplifiedCDescriptor() 188 locations.AddReturn(regloc(kReturnRegister1, msig->GetReturn(1))); in GetSimplifiedCDescriptor() 209 locations.AddParam(regloc(kParamRegisters[i], msig->GetParam(i))); in GetSimplifiedCDescriptor() 211 locations.AddParam(LinkageLocation::ForCallerFrameSlot( in GetSimplifiedCDescriptor() 241 locations.Build(), // location_sig in GetSimplifiedCDescriptor()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 117 SmallVector<MachineOperand, 4> locations; member in __anon008224d20211::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 __anonb2ee42a60211::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/v8/tools/turbolizer/ |
D | selection-broker.js | 38 SelectionBroker.prototype.select = function(from, locations, selected) { argument 44 let enrichLocations = function(locations) { argument 46 for (let location of locations) { 72 locations = enrichLocations(locations); 75 b.brokeredSelect(locations, selected);
|
D | code-view.js | 28 var locations = []; 30 locations.push({pos_start: span.start, pos_end: span.end}); 33 broker.select(selectionHandler, locations, selected); 56 brokeredSelect: function(locations, selected) { argument 58 for (let location of locations) {
|
D | schedule-view.js | 111 var locations = []; 113 locations.push({ node_id : id }); 115 this.selectLocations(locations, true, true);
|
D | text-view.js | 35 brokeredSelect: function(locations, selected) { argument 36 view.selectLocations(locations, selected, true); 89 selectLocations(locations, selected, makeVisible) { argument 92 for (let l of locations) {
|
/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/chromium-trace/catapult/telemetry/telemetry/util/ |
D | statistics.py | 56 locations = [] 68 locations.append(location) 78 locations.append(0.0) 82 locations.append(samples[i]) 86 locations.append(1.0) 105 for i in xrange(1, len(locations)): 106 length = locations[i] - locations[i - 1]
|
/external/bison/tests/ |
D | calc.at | 452 # 3. If locations are not used, remove them. 600 AT_CHECK_CALC_LALR([%locations]) 607 AT_CHECK_CALC_LALR([%define api.pure full %locations]) 608 AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure full %locations]) 609 AT_CHECK_CALC_LALR([%error-verbose %locations]) 611 AT_CHECK_CALC_LALR([%error-verbose %locations %defines %name-prefix "calc" %verbose %yacc]) 612 AT_CHECK_CALC_LALR([%error-verbose %locations %defines %define api.prefix "calc" %verbose %yacc]) 615 AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %name-prefix "calc" %verbose %yacc]) 616 AT_CHECK_CALC_LALR([%error-verbose %debug %locations %defines %define api.prefix "calc" %verbose %y… 618 AT_CHECK_CALC_LALR([%define api.pure full %verbose %debug %locations %defines %name-prefix "calc" %… [all …]
|
D | cxx-type.at | 394 AT_SETUP([GLR: Resolve ambiguity, impure, no locations]) 401 AT_SETUP([GLR: Resolve ambiguity, impure, locations]) 402 _AT_TEST_GLR_CXXTYPES([%locations],[%dprec 1],[%dprec 2]) 407 AT_SETUP([GLR: Resolve ambiguity, pure, no locations]) 414 AT_SETUP([GLR: Resolve ambiguity, pure, locations]) 415 _AT_TEST_GLR_CXXTYPES([%define api.pure %locations], 421 AT_SETUP([GLR: Merge conflicting parses, impure, no locations]) 428 AT_SETUP([GLR: Merge conflicting parses, impure, locations]) 429 _AT_TEST_GLR_CXXTYPES([%locations], 435 AT_SETUP([GLR: Merge conflicting parses, pure, no locations]) [all …]
|
D | headers.at | 72 [%locations 219 AT_TEST([x2], [%locations %debug]) 221 AT_TEST([x4], [%locations %debug %glr-parser]) 222 AT_TEST([x5], [%locations %debug %language "c++"]) 226 #AT_TEST([x5], [%locations %language "c++" %glr-parser])
|
/external/timezonepicker-support/ |
D | zone.tab | 46 AR -3124-06411 America/Argentina/Cordoba most locations (CB, CC, CN, ER, FM, MN, SE, SF) 59 AU -3352+15113 Australia/Sydney New South Wales - most locations 63 AU -4253+14719 Australia/Hobart Tasmania - most locations 67 AU -2728+15302 Australia/Brisbane Queensland - most locations 70 AU -3157+11551 Australia/Perth Western Australia - most locations 114 CA +5320-06025 America/Goose_Bay Atlantic Time - Labrador - most locations 116 CA +4531-07334 America/Montreal Eastern Time - Quebec - most locations 117 CA +4339-07923 America/Toronto Eastern Time - Ontario - most locations 120 CA +6344-06828 America/Iqaluit Eastern Time - east Nunavut - most locations 127 CA +5024-10439 America/Regina Central Standard Time - Saskatchewan - most locations [all …]
|
/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/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/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/libunwind/src/ia64/ |
D | NOTES | 20 *current* frame state and the save locations in the next younger 23 An unwind script current takes the old save locations and updates them 25 frame state first, without updating the other save locations. For this
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/ |
D | SmaliPositionManager.java | 123 final ArrayList<Location> locations = new ArrayList<Location>(1); 138 locations.add(location); 143 return locations;
|
/external/emma/ |
D | work.dirs.properties | 9 # ---- root locations created by the build: 24 # ---- module-specific locations created by the build:
|
/external/llvm/docs/ |
D | StackMaps.rst | 116 values`` for which locations will be recorded in the stack map. 211 the ``live values`` for which locations will be recorded in the stack 242 will have their register locations recorded in the stack map in 281 Note that no stack map locations will be recorded. If the patched code 372 as ``Indirect`` locations. The runtime must load those values from a 377 encoded as ``Direct`` locations in the form ``BP + Offset``. LLVM may 380 pool, referred to by ``ConstantIndex`` locations. 437 locations, which LLVM preserves. 460 simply patch all stack map locations to invalidate the function). If 477 that the runtime requested. This differs from Indirect locations, [all …]
|
/external/libcups/cups/ |
D | dest.c | 131 static CFStringRef appleGetPrinter(CFArrayRef locations, 319 CFArrayRef locations; /* Location array */ in _cupsAppleCopyDefaultPrinter() local 350 if ((locations = appleCopyLocations()) == NULL) in _cupsAppleCopyDefaultPrinter() 365 (int)CFArrayGetCount(locations))); in _cupsAppleCopyDefaultPrinter() 367 if ((locprinter = appleGetPrinter(locations, network, NULL)) != NULL) in _cupsAppleCopyDefaultPrinter() 371 CFRelease(locations); in _cupsAppleCopyDefaultPrinter() 432 CFArrayRef locations; /* Old locations array */ in _cupsAppleSetDefaultPrinter() local 453 if ((locations = appleCopyLocations()) != NULL) in _cupsAppleSetDefaultPrinter() 454 locprinter = appleGetPrinter(locations, network, &locindex); in _cupsAppleSetDefaultPrinter() 467 if (locations) in _cupsAppleSetDefaultPrinter() [all …]
|