HomeSort by relevance Sort by last modified time
    Searched refs:dec_num (Results 1 - 3 of 3) sorted by null

  /external/vulkan-validation-layers/scripts/
spec.py 58 def get8digithex(dec_num):
60 if dec_num > 4294967295:
61 print ("ERROR: Decimal # %d can't be represented in 8 hex digits" % (dec_num))
63 hex_num = hex(dec_num)
object_tracker_generator.py 282 def IdToHex(self, dec_num):
283 if dec_num > 4294967295:
284 print ("ERROR: Decimal # %d can't be represented in 8 hex digits" % (dec_num))
286 hex_num = hex(dec_num)
    [all...]
parameter_validation_generator.py 254 def IdToHex(self, dec_num):
255 if dec_num > 4294967295:
256 print ("ERROR: Decimal # %d can't be represented in 8 hex digits" % (dec_num))
258 hex_num = hex(dec_num)
    [all...]

Completed in 162 milliseconds