Searched refs:gen (Results 76 - 100 of 433) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_extensions.c96 if (intel->gen >= 6)
106 if (intel->gen == 6 ||
107 (intel->gen == 7 && intel->intelScreen->kernel_has_gen7_sol_reset))
110 if (intel->gen >= 6) {
120 if (intel->gen >= 5)
123 if (intel->gen >= 6) {
130 if (intel->gen >= 4) {
167 if (intel->gen >= 3) {
194 if (intel->gen >= 4) {
H A Dgen6_multisample_state.c102 int len = intel->gen >= 7 ? 4 : 3;
107 if (intel->gen >= 7)
H A Dbrw_eu_emit.c67 if (intel->gen < 6)
96 if (intel->gen == 7 && reg->file == BRW_MESSAGE_REGISTER_FILE) {
405 if (intel->gen >= 5) {
411 if (intel->gen >= 6) {
466 if (intel->gen == 5) {
516 if (intel->gen == 7) {
524 } else if (intel->gen >= 5) {
558 if (intel->gen >= 7) {
564 } else if (intel->gen == 6) {
574 if (intel->gen >
[all...]
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_extensions.c96 if (intel->gen >= 6)
106 if (intel->gen == 6 ||
107 (intel->gen == 7 && intel->intelScreen->kernel_has_gen7_sol_reset))
110 if (intel->gen >= 6) {
120 if (intel->gen >= 5)
123 if (intel->gen >= 6) {
130 if (intel->gen >= 4) {
167 if (intel->gen >= 3) {
194 if (intel->gen >= 4) {
H A Dintel_screen.h41 int gen; member in struct:intel_screen
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DConstructorDelegate.java40 Generator gen = new Generator();
41 gen.setTargetClass(targetClass);
42 gen.setInterface(iface);
43 return gen.create();
/external/skia/src/lazy/
H A DSkCachingPixelRef.h40 static bool Install(SkImageGenerator* gen, SkBitmap* dst);
/external/openssl/crypto/ec/
H A Deck_prn.c154 BIGNUM *p=NULL, *a=NULL, *b=NULL, *gen=NULL, local
243 if ((gen = EC_POINT_point2bn(x, point,
255 if (buf_len < (i = (size_t)BN_num_bytes(gen)))
310 if ((gen != NULL) && !ASN1_bn_print(bp, gen_compressed, gen,
316 if ((gen != NULL) && !ASN1_bn_print(bp, gen_uncompressed, gen,
322 if ((gen != NULL) && !ASN1_bn_print(bp, gen_hybrid, gen,
343 if (gen)
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
H A DTestDotTreeGenerator.cs55 DotTreeGenerator gen = new DotTreeGenerator();
56 string output = gen.ToDot( tree, adaptor );
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dgen6_multisample_state.c102 int len = intel->gen >= 7 ? 4 : 3;
107 if (intel->gen >= 7)
H A Dbrw_eu_emit.c67 if (intel->gen < 6)
96 if (intel->gen == 7 && reg->file == BRW_MESSAGE_REGISTER_FILE) {
405 if (intel->gen >= 5) {
411 if (intel->gen >= 6) {
466 if (intel->gen == 5) {
516 if (intel->gen == 7) {
524 } else if (intel->gen >= 5) {
558 if (intel->gen >= 7) {
564 } else if (intel->gen == 6) {
574 if (intel->gen >
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dmake_perl_groups.pl76 my $gen = 0;
83 push @entries, PrintClass(++$gen, $cl, @ranges);
/external/ipsec-tools/src/racoon/
H A Dvendorid.c215 * gen ... points to Vendor ID payload.
218 check_vendorid(struct isakmp_gen *gen) argument
224 if (gen == NULL)
227 vidlen = ntohs(gen->len) - sizeof(*gen);
229 current = lookup_vendor_id_by_hash((char *)(gen + 1));
246 plogdump(LLV_DEBUG, (char *)(gen + 1), vidlen);
251 handle_vendorid(struct ph1handle *iph1, struct isakmp_gen *gen) argument
255 vid_numeric = check_vendorid(gen);
/external/llvm/
H A Dllvm.mk8 LLVM_GEN_INTRINSICS_MK := $(LLVM_ROOT_PATH)/llvm-gen-intrinsics.mk
/external/regex-re2/re2/
H A Dmake_perl_groups.pl76 my $gen = 0;
83 push @entries, PrintClass(++$gen, $cl, @ranges);
/external/valgrind/main/drd/tests/
H A Dverify-xml-output19 ../../vg-in-place --tool=drd --xml=yes --xml-file="$b-%q{USER}.xml" --xml-user-comment="<runBy>$(basename $0)</runBy>" --child-silent-after-fork=yes --gen-suppressions=all $vgopts ./$prog $args
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_ncons.c78 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
79 static int nc_match_single(GENERAL_NAME *sub, GENERAL_NAME *gen);
289 GENERAL_NAME *gen = sk_GENERAL_NAME_value(x->altname, j);
290 r = nc_match(gen, nc);
299 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
312 if (gen->type != sub->base->type)
321 r = nc_match_single(gen, sub->base);
336 if (gen->type != sub->base->type)
341 r = nc_match_single(gen, sub->base);
353 static int nc_match_single(GENERAL_NAME *gen, GENERAL_NAM
[all...]
H A Dv3_akey.c123 GENERAL_NAME *gen = NULL; local
190 || !(gen = GENERAL_NAME_new())
191 || !sk_GENERAL_NAME_push(gens, gen))
196 gen->type = GEN_DIRNAME;
197 gen->d.dirn = isname;
H A Dv3nametest.c162 GENERAL_NAME *gen = NULL; local
177 gen = GENERAL_NAME_new();
178 if (gen == NULL)
189 GENERAL_NAME_set0_value(gen, type, ia5);
195 sk_GENERAL_NAME_push(gens, gen);
196 gen = NULL;
203 GENERAL_NAME_free(gen);
/external/openssl/crypto/x509v3/
H A Dv3_ncons.c75 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc);
76 static int nc_match_single(GENERAL_NAME *sub, GENERAL_NAME *gen);
285 GENERAL_NAME *gen = sk_GENERAL_NAME_value(x->altname, i);
286 r = nc_match(gen, nc);
295 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc)
307 if (gen->type != sub->base->type)
316 r = nc_match_single(gen, sub->base);
331 if (gen->type != sub->base->type)
336 r = nc_match_single(gen, sub->base);
348 static int nc_match_single(GENERAL_NAME *gen, GENERAL_NAM
[all...]
H A Dv3_akey.c120 GENERAL_NAME *gen = NULL; local
187 || !(gen = GENERAL_NAME_new())
188 || !sk_GENERAL_NAME_push(gens, gen))
193 gen->type = GEN_DIRNAME;
194 gen->d.dirn = isname;
/external/bison/
H A DGNUmakefile47 _have-git-version-gen := \
48 $(shell test -f $(srcdir)/$(_build-aux)/git-version-gen && echo yes)
49 ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL))
55 && $(_build-aux)/git-version-gen \
57 $(git-version-gen-tag-sed-script))
/external/openssl/crypto/ocsp/
H A Docsp_cl.c102 GENERAL_NAME *gen; local
103 gen = GENERAL_NAME_new();
104 if (gen == NULL)
106 if (!X509_NAME_set(&gen->d.directoryName, nm))
108 GENERAL_NAME_free(gen);
111 gen->type = GEN_DIRNAME;
114 req->tbsRequest->requestorName = gen;
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_winsys.c228 ws->gen = R300;
234 ws->gen = R600;
240 ws->gen = SI;
262 if (ws->gen == R300) {
273 else if (ws->gen >= R600) {
307 if (ws->gen == R600 && !debug_get_bool_option("RADEON_VA", FALSE))
329 if (ws->gen >= R600) {
391 ws->gen < R600) {
421 if (ws->gen >= R600) {
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_winsys.c228 ws->gen = R300;
234 ws->gen = R600;
240 ws->gen = SI;
262 if (ws->gen == R300) {
273 else if (ws->gen >= R600) {
307 if (ws->gen == R600 && !debug_get_bool_option("RADEON_VA", FALSE))
329 if (ws->gen >= R600) {
391 ws->gen < R600) {
421 if (ws->gen >= R600) {

Completed in 950 milliseconds

1234567891011>>