/external/bcc/tests/python/ |
D | test_xlate1.py | 39 self.xlate = b.get_table("xlate") 42 key1 = self.xlate.Key(IPAddress("172.16.1.2").value, IPAddress("172.16.1.1").value) 43 … leaf1 = self.xlate.Leaf(IPAddress("192.168.1.2").value, IPAddress("192.168.1.1").value, 0, 0) 44 self.xlate[key1] = leaf1 45 key2 = self.xlate.Key(IPAddress("192.168.1.1").value, IPAddress("192.168.1.2").value) 46 leaf2 = self.xlate.Leaf(IPAddress("172.16.1.1").value, IPAddress("172.16.1.2").value, 0, 0) 47 self.xlate[key2] = leaf2 49 leaf = self.xlate[key1] 52 leaf = self.xlate[key2]
|
D | test_xlate1.c | 14 BPF_HASH(xlate, struct IPKey, struct IPLeaf, 1024); 47 struct IPLeaf *xleafp = xlate.lookup(&key); in on_packet() 62 struct IPLeaf *xleafp = xlate.lookup(&key); in on_packet()
|
/external/boringssl/src/crypto/test/asm/ |
D | trampoline-armv4.pl | 40 my $xlate; 41 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 42 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or 45 open OUT, "| \"$^X\" \"$xlate\" $flavour \"$output\"";
|
D | trampoline-armv8.pl | 38 my $xlate; 39 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 40 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or 43 open OUT, "| \"$^X\" \"$xlate\" $flavour \"$output\"";
|
D | trampoline-ppc.pl | 36 my $xlate; 37 ( $xlate="${dir}ppc-xlate.pl" and -f $xlate ) or 38 ( $xlate="${dir}../../perlasm/ppc-xlate.pl" and -f $xlate) or 41 open OUT, "| \"$^X\" \"$xlate\" $flavour \"$output\"";
|
D | trampoline-x86_64.pl | 41 my $xlate; 42 ( $xlate="${dir}x86_64-xlate.pl" and -f $xlate ) or 43 ( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or 46 open OUT, "| \"$^X\" \"$xlate\" $flavour \"$output\"";
|
/external/boringssl/src/crypto/fipsmodule/rand/asm/ |
D | rdrand-x86_64.pl | 28 my $xlate; 29 ( $xlate="${dir}../../../perlasm/x86_64-xlate.pl" and -f $xlate) or 32 open OUT,"| \"$^X\" $xlate $flavour $output";
|
/external/boringssl/src/crypto/fipsmodule/modes/asm/ |
D | ghash-ssse3-x86_64.pl | 82 my $xlate; 83 ( $xlate="${dir}x86_64-xlate.pl" and -f $xlate ) or 84 ( $xlate="${dir}../../../perlasm/x86_64-xlate.pl" and -f $xlate) or 87 open OUT, "| \"$^X\" \"$xlate\" $flavour \"$output\"";
|
D | ghash-neon-armv8.pl | 60 my $xlate; 61 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 62 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 65 open OUT,"| \"$^X\" $xlate $flavour $output";
|
D | ghash-armv4.pl | 90 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 91 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 94 open OUT,"| \"$^X\" $xlate $flavour $output";
|
D | ghashv8-armx.pl | 44 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 45 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 48 open OUT,"| \"$^X\" $xlate $flavour $output";
|
/external/iptables/extensions/ |
D | libip6t_REJECT.c | 17 const char *xlate; member 159 reject_table[reject->with].xlate); in REJECT_xlate() 162 reject_table[reject->with].xlate); in REJECT_xlate() 179 .xlate = REJECT_xlate,
|
D | libipt_REJECT.c | 24 const char *xlate; member 176 reject_table[reject->with].xlate); in REJECT_xlate() 179 reject_table[reject->with].xlate); in REJECT_xlate() 197 .xlate = REJECT_xlate,
|
/external/rust/crates/ring/crypto/fipsmodule/modes/asm/ |
D | ghash-armv4.pl | 90 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 91 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 94 open OUT,"| \"$^X\" $xlate $flavour $output";
|
D | ghashv8-armx.pl | 44 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 45 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 48 open OUT,"| \"$^X\" $xlate $flavour $output";
|
/external/skia/gm/ |
D | strokerect_anisotropic.cpp | 12 static void draw_sqooshed_rect(SkCanvas* canvas, SkVector xlate, const SkPaint& p) { in draw_sqooshed_rect() argument 14 canvas->translate(xlate.fX, xlate.fY); in draw_sqooshed_rect()
|
/external/boringssl/src/crypto/fipsmodule/md5/asm/ |
D | md5-x86_64.pl | 118 $0 =~ m/(.*[\/\\])[^\/\\]+$/; my $dir=$1; my $xlate; 119 ( $xlate="${dir}x86_64-xlate.pl" and -f $xlate ) or 120 ( $xlate="${dir}../../../perlasm/x86_64-xlate.pl" and -f $xlate) or 123 open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\"";
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder_gfx_mem.cpp | 131 bool xlate = (Ptr->getType() == mInt64Ty); in GEP() local 132 if (xlate) in GEP() 155 bool xlate = (Ptr->getType() == mInt64Ty); in GEP() local 156 if (xlate) in GEP() 172 bool xlate = (Ptr->getType() == mInt64Ty); in GEP() local 173 if (xlate) in GEP() 190 bool xlate = (Ptr->getType() == mInt64Ty); in GEP() local 191 if (xlate) in GEP()
|
/external/iptables/iptables/ |
D | xtables-translate.c | 85 else if (cs->target->xlate) { in xlate_action() 93 ret = cs->target->xlate(xl, ¶ms); in xlate_action() 121 if (!matchp->match->xlate) in xlate_matches() 124 ret = matchp->match->xlate(xl, ¶ms); in xlate_matches() 168 ret = h->ops->xlate(cs, xl); in nft_rule_xlate_add() 176 static int xlate(struct nft_handle *h, struct nft_xt_cmd_parse *p, in xlate() function 241 .xlate = true, in do_command_xlate() 258 if (!xlate(h, &p, &cs, &args, true, nft_rule_xlate_add)) in do_command_xlate() 271 if (!xlate(h, &p, &cs, &args, false, nft_rule_xlate_add)) in do_command_xlate()
|
/external/boringssl/src/crypto/fipsmodule/ec/asm/ |
D | p256_beeu-x86_64-asm.pl | 27 ( $xlate="${dir}x86_64-xlate.pl" and -f $xlate ) or 28 ( $xlate="${dir}../../../perlasm/x86_64-xlate.pl" and -f $xlate) or 31 open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\"";
|
/external/boringssl/src/crypto/fipsmodule/sha/asm/ |
D | sha1-armv8.pl | 39 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 40 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 43 open OUT,"| \"$^X\" $xlate $flavour $output";
|
D | sha512-armv8.pl | 46 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 47 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 50 open OUT,"| \"$^X\" $xlate $flavour $output";
|
/external/e2fsprogs/lib/ext2fs/ |
D | dir_iterate.c | 139 struct xlate { struct 153 struct xlate *xl = (struct xlate *) priv_data; in xlate_func() argument 169 struct xlate xl; in ext2fs_dir_iterate()
|
/external/rust/crates/ring/crypto/fipsmodule/sha/asm/ |
D | sha512-armv8.pl | 46 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 47 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 50 open OUT,"| \"$^X\" $xlate $flavour $output";
|
/external/rust/crates/ring/crypto/fipsmodule/aes/asm/ |
D | aesv8-armx.pl | 46 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 47 ( $xlate="${dir}../../../perlasm/arm-xlate.pl" and -f $xlate) or 50 open OUT,"| \"$^X\" $xlate $flavour $output";
|