anv: anv_entrypoints_gen.py: use reduce function.
authorDylan Baker <dylan@pnwbakers.com>
Tue, 21 Feb 2017 19:00:41 +0000 (11:00 -0800)
committerDylan Baker <dylan@pnwbakers.com>
Wed, 22 Mar 2017 23:22:00 +0000 (16:22 -0700)
Reduce is it's own reward.

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
src/intel/vulkan/anv_entrypoints_gen.py

index a63badb4770f7d771606c05b9c93a38c738aa8f4..6b2d4220150678c5eb14a6ac3a5fef7bd245b554 100644 (file)
@@ -23,6 +23,7 @@
 #
 
 import argparse
+import functools
 import os
 import textwrap
 import xml.etree.ElementTree as et
@@ -258,11 +259,8 @@ PRIME_STEP = 19
 
 def cal_hash(name):
     """Calculate the same hash value that Mesa will calculate in C."""
-    h = 0
-    for c in name:
-        h = (h * PRIME_FACTOR + ord(c)) & U32_MASK
-
-    return h
+    return functools.reduce(
+        lambda h, c: (h * PRIME_FACTOR + ord(c)) & U32_MASK, name, 0)
 
 
 def get_entrypoints(doc, entrypoints_to_defines):