Home
last modified time | relevance | path

Searched +full:- +full:nv (Results 1 – 25 of 1013) sorted by relevance

12345678910>>...41

/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_buffer.c34 if (!buf->data) in nouveau_buffer_malloc()
35 buf->data = align_malloc(buf->base.width0, NOUVEAU_MIN_BUFFER_MAP_ALIGN); in nouveau_buffer_malloc()
36 return !!buf->data; in nouveau_buffer_malloc()
43 uint32_t size = align(buf->base.width0, 0x100); in nouveau_buffer_allocate()
46 buf->mm = nouveau_mm_allocate(screen->mm_VRAM, size, in nouveau_buffer_allocate()
47 &buf->bo, &buf->offset); in nouveau_buffer_allocate()
48 if (!buf->bo) in nouveau_buffer_allocate()
50 NOUVEAU_DRV_STAT(screen, buf_obj_current_bytes_vid, buf->base.width0); in nouveau_buffer_allocate()
53 buf->mm = nouveau_mm_allocate(screen->mm_GART, size, in nouveau_buffer_allocate()
54 &buf->bo, &buf->offset); in nouveau_buffer_allocate()
[all …]
Dnouveau_context.h75 * because we don't want to un-bo_ref each allocation every time. This is less
79 nouveau_scratch_done(struct nouveau_context *nv) in nouveau_scratch_done() argument
81 nv->scratch.wrap = nv->scratch.id; in nouveau_scratch_done()
82 if (unlikely(nv->scratch.runout)) in nouveau_scratch_done()
83 nouveau_scratch_runout_release(nv); in nouveau_scratch_done()
87 * The returned nouveau_bo is only referenced by the context, don't un-ref it !
99 if (ctx->scratch.bo[i]) in nouveau_context_destroy()
100 nouveau_bo_ref(NULL, &ctx->scratch.bo[i]); in nouveau_context_destroy()
106 nouveau_context_update_frame_stats(struct nouveau_context *nv) in nouveau_context_update_frame_stats() argument
108 nv->stats.buf_cache_frame <<= 1; in nouveau_context_update_frame_stats()
[all …]
/external/curl/src/
Dtool_setopt.c8 * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
42 #define NV(e) {#e, e} macro
47 NV(CURLPROXY_HTTP),
48 NV(CURLPROXY_HTTP_1_0),
49 NV(CURLPROXY_HTTPS),
50 NV(CURLPROXY_SOCKS4),
51 NV(CURLPROXY_SOCKS5),
52 NV(CURLPROXY_SOCKS4A),
53 NV(CURLPROXY_SOCKS5_HOSTNAME),
58 NV(CURLPROXY_SOCKS4),
[all …]
/external/epid-sdk/epid/member/tpm2/src/
Dnv.c8 # http://www.apache.org/licenses/LICENSE-2.0
19 * \brief TPM NV API implementation.
22 #include "epid/member/tpm2/nv.h"
27 /// Find nv_index in nv array
31 if (ctx->nv[i].nv_index == nv_index) return i; in EpidFindNvIndex()
33 return -1; in EpidFindNvIndex()
36 /// Find empty node in nv array
40 if (!ctx->nv[i].data_size) return i; in EpidFindFirstEmptyNvIndex()
42 return -1; in EpidFindFirstEmptyNvIndex()
53 if (EpidFindNvIndex(ctx, nv_index) != -1) { in Tpm2NvDefineSpace()
[all …]
Dcontext.c8 # http://www.apache.org/licenses/LICENSE-2.0
54 if (params->f) { in Tpm2CreateContext()
55 FiniteField* Fp = epid2_params->Fp; in Tpm2CreateContext()
59 sts = ReadFfElement(Fp, params->f, sizeof(*params->f), ff_elem); in Tpm2CreateContext()
62 tpm_ctx->epid2_params = epid2_params; in Tpm2CreateContext()
63 tpm_ctx->rnd_func = params->rnd_func; in Tpm2CreateContext()
64 tpm_ctx->rnd_param = params->rnd_param; in Tpm2CreateContext()
65 tpm_ctx->f = NULL; in Tpm2CreateContext()
66 *rnd_func = params->rnd_func; in Tpm2CreateContext()
67 *rnd_param = params->rnd_param; in Tpm2CreateContext()
[all …]
Dstate.h8 # http://www.apache.org/licenses/LICENSE-2.0
32 /// Maximum NV index
34 /// Minimal possible NV index in TPM
44 /// One NV entry
60 NvEntry nv[MAX_NV_NUMBER]; ///< NV memory member
/external/skia/src/gpu/gl/
DGrGLAssembleInterface.cpp4 * Use of this source code is governed by a BSD-style license that can be
12 #define GET_PROC(F) functions->f##F = (GrGL##F##Fn*)get(ctx, "gl" #F)
13 #define GET_PROC_SUFFIX(F, S) functions->f##F = (GrGL##F##Fn*)get(ctx, "gl" #F #S)
16 #define GET_EGL_PROC_SUFFIX(F, S) functions->fEGL##F = (GrEGL##F##Fn*)get(ctx, "egl" #F #S)
68 // This is our minimum for non-ES GL. in GrGLMakeAssembledGLInterface()
82 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLInterface()
97 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLInterface()
221 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLInterface()
323 GET_PROC_SUFFIX(PathCommands, NV); in GrGLMakeAssembledGLInterface()
324 GET_PROC_SUFFIX(PathParameteri, NV); in GrGLMakeAssembledGLInterface()
[all …]
/external/skqp/samplecode/
DSamplePatch.cpp4 * Use of this source code is governed by a BSD-style license that can be
35 size->set(bm.width(), bm.height()); in make_shader0()
80 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv, in eval_sheet() argument
84 const int BR = TR + nv; in eval_sheet()
88 SkScalar v = SkIntToScalar(iv) / nv; in eval_sheet()
91 SkScalar Uv = (1 - u) * v; in eval_sheet()
92 SkScalar uV = u * (1 - v); in eval_sheet()
93 SkScalar UV = (1 - u) * (1 - v); in eval_sheet()
98 SkScalar x = (1 - v) * edge[TL+iu].fX + u * edge[TR+iv].fX + in eval_sheet()
99 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet()
[all …]
/external/skqp/src/gpu/gl/
DGrGLAssembleInterface.cpp4 * Use of this source code is governed by a BSD-style license that can be
12 #define GET_PROC(F) functions->f##F = (GrGL##F##Fn*)get(ctx, "gl" #F)
13 #define GET_PROC_SUFFIX(F, S) functions->f##F = (GrGL##F##Fn*)get(ctx, "gl" #F #S)
16 #define GET_EGL_PROC_SUFFIX(F, S) functions->fEGL##F = (GrEGL##F##Fn*)get(ctx, "egl" #F #S)
68 // This is our minimum for non-ES GL. in GrGLMakeAssembledGLInterface()
82 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLInterface()
97 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLInterface()
224 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLInterface()
326 GET_PROC_SUFFIX(PathCommands, NV); in GrGLMakeAssembledGLInterface()
327 GET_PROC_SUFFIX(PathParameteri, NV); in GrGLMakeAssembledGLInterface()
[all …]
/external/tensorflow/tensorflow/examples/android/jni/
Dyuv2rgb.cc7 http://www.apache.org/licenses/LICENSE-2.0
26 // This value is 2 ^ 18 - 1, and is used to clamp the RGB values before their ranges
30 static inline uint32_t YUV2RGB(int nY, int nU, int nV) { in YUV2RGB() argument
31 nY -= 16; in YUV2RGB()
32 nU -= 128; in YUV2RGB()
33 nV -= 128; in YUV2RGB()
39 // nG = (int)(1.164 * nY - 0.813 * nV - 0.391 * nU); in YUV2RGB()
40 // nB = (int)(1.164 * nY + 1.596 * nV); in YUV2RGB()
42 int nR = 1192 * nY + 1634 * nV; in YUV2RGB()
43 int nG = 1192 * nY - 833 * nV - 400 * nU; in YUV2RGB()
[all …]
/external/skia/samplecode/
DSamplePatch.cpp4 * Use of this source code is governed by a BSD-style license that can be
35 size->set(bm.width(), bm.height()); in make_shader0()
80 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv, in eval_sheet() argument
84 const int BR = TR + nv; in eval_sheet()
88 SkScalar v = SkIntToScalar(iv) / nv; in eval_sheet()
91 SkScalar Uv = (1 - u) * v; in eval_sheet()
92 SkScalar uV = u * (1 - v); in eval_sheet()
93 SkScalar UV = (1 - u) * (1 - v); in eval_sheet()
98 SkScalar x = (1 - v) * edge[TL+iu].fX + u * edge[TR+iv].fX + in eval_sheet()
99 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/
Darm64-nv-cond.s1 // RUN: llvm-mc < %s -triple arm64 -mattr=neon -show-encoding | FileCheck %s
3 fcsel d28,d31,d31,nv
4 csel x0,x0,x0,nv
5 ccmp x0,x0,#0,nv
6 b.nv #0
8 // CHECK: fcsel d28, d31, d31, nv // encoding: [0xfc,0xff,0x7f,0x1e]
9 // CHECK: csel x0, x0, x0, nv // encoding: [0x00,0xf0,0x80,0x9a]
10 // CHECK: ccmp x0, x0, #0, nv // encoding: [0x00,0xf0,0x40,0xfa]
11 // CHECK: b.nv #0 // encoding: [0x0f,0x00,0x00,0x54]
/external/llvm/test/MC/AArch64/
Darm64-nv-cond.s1 // RUN: llvm-mc < %s -triple arm64 -mattr=neon -show-encoding | FileCheck %s
3 fcsel d28,d31,d31,nv
4 csel x0,x0,x0,nv
5 ccmp x0,x0,#0,nv
6 b.nv #0
8 // CHECK: fcsel d28, d31, d31, nv // encoding: [0xfc,0xff,0x7f,0x1e]
9 // CHECK: csel x0, x0, x0, nv // encoding: [0x00,0xf0,0x80,0x9a]
10 // CHECK: ccmp x0, x0, #0, nv // encoding: [0x00,0xf0,0x40,0xfa]
11 // CHECK: b.nv #0 // encoding: [0x0f,0x00,0x00,0x54]
/external/toybox/toys/android/
Dgetprop.c1 /* getprop.c - Get an Android system property
28 char **nv; // name/value pairs: even=name, odd=value
45 if (!(TT.size&31)) TT.nv = xrealloc(TT.nv, (TT.size+32)*2*sizeof(char *)); in read_callback()
47 TT.nv[2*TT.size] = xstrdup((char *)name); in read_callback()
49 TT.nv[1+2*TT.size++] = get_property_context(name); in read_callback()
51 TT.nv[1+2*TT.size++] = xstrdup((char *)value); in read_callback()
108 qsort(TT.nv, TT.size, 2*sizeof(char *), qstrcmp); in getprop_main()
109 for (i = 0; i<TT.size; i++) printf("[%s]: [%s]\n", TT.nv[i*2],TT.nv[1+i*2]); in getprop_main()
112 free(TT.nv[i*2]); in getprop_main()
113 free(TT.nv[1+i*2]); in getprop_main()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
DPChargingFunctionAddresses.java15 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
28 * PRODUCT OF PT INOVACAO - EST DEPARTMENT *
47 * <p>P-Charging-Function-Addresses SIP Private Header. </p>
51 * P-Charging-Addr = "P-Charging-Function-Addresses" HCOLON
52 * charge-addr-params
53 * *(SEMI charge-addr-params)
54 * charge-addr-params = ccf / ecf / generic-param
55 * ccf = "ccf" EQUAL gen-value
56 * ecf = "ecf" EQUAL gen-value
57 * gen-value = token / host / quoted-string
[all …]
/external/vboot_reference/tests/
Dvboot_api_init_tests.c2 * Use of this source code is governed by a BSD-style license that can be
111 * Exponential-ish rather than linear time, so that subtracting any in VbExGetTimer()
160 cparams.shared_data_size = VB_SHARED_DATA_MIN_SIZE - 1; in VbInitTest()
166 TEST_EQ(shared->timer_vb_init_enter, 21, " time enter"); in VbInitTest()
167 TEST_EQ(shared->timer_vb_init_exit, 43, " time exit"); in VbInitTest()
168 TEST_EQ(shared->flags, 0, " shared flags"); in VbInitTest()
171 " NV write not called since nothing changed"); in VbInitTest()
173 /* If NV data is trashed, we initialize it */ in VbInitTest()
181 TestVbInit(0, 0, "NV data trashed"); in VbInitTest()
182 TEST_EQ(nv_write_called, 1, " NV write called"); in VbInitTest()
[all …]
/external/eigen/Eigen/src/OrderingMethods/
DAmd.h25 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
38 template<typename T> inline T amd_flip(const T& i) { return -i-2; } in amd_flip()
55 return (mark); /* at this point, w[0..n-1] < mark holds */ in cs_wclear()
58 /* depth-first search and postorder of a tree rooted at node j */
63 if(!head || !next || !post || !stack) return (-1); /* check inputs */ in cs_tdfs()
69 if(i == -1) in cs_tdfs()
71 top--; /* p has no unordered children left */ in cs_tdfs()
89 * \param[out] perm the permutation P reducing the fill-in of the input matrix \a C
104 dense = (std::min)(n-2, dense); in minimum_degree_ordering()
114 StorageIndex* nv = W + (n+1); in minimum_degree_ordering() local
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DParametersHeader.java14 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
77 * zero-length String indicates flag parameter.
111 *@return true if the parameters list is non-empty.
123 * @param name - a String specifying the parameter name
133 * a value it will be overwritten. A zero-length String indicates flag
139 * @param name - a String specifying the parameter name
141 * @param value - a String specifying the parameter value
149 NameValue nv = parameters.getNameValue(name); in setParameter() local
150 if (nv != null) { in setParameter()
151 nv.setValueAsObject(value); in setParameter()
[all …]
DAuthenticationInfo.java14 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
45 private static final long serialVersionUID = -4371927900917127057L;
54 public void add(NameValue nv) { in add() argument
55 parameters.set(nv); in add()
112 * @return the integer representing the nonceCount information, -1 if value is
142 * @param cNonce - the new cNonce String of this AuthenticationInfoHeader.
154 * @param nextNonce - the new nextNonce String of this AuthenticationInfoHeader.
166 * @param nonceCount - the new nonceCount integer of this AuthenticationInfoHeader.
177 nc = base.substring(0, 8 - nc.length()) + nc; in setNonceCount()
184 * @param qop - the new Qop string of this AuthenticationInfoHeader.
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractMapEntryTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
34 private static final Integer NV = null; field in AbstractMapEntryTest
57 assertEquals("foo=null", entry("foo", NV).toString());
58 assertEquals("null=null", entry(NK, NV).toString());
74 assertEquals(control("bar", NV), entry("bar", NV));
88 assertEquals(control("bar", NV).hashCode(), entry("bar", NV).hashCode());
89 assertEquals(control(NK, NV).hashCode(), entry(NK, NV).hashCode());
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_transfer.c20 struct nouveau_pushbuf *push = nvc0->base.pushbuf; in nvc0_m2mf_transfer_rect()
21 struct nouveau_bufctx *bctx = nvc0->bufctx; in nvc0_m2mf_transfer_rect()
22 const int cpp = dst->cpp; in nvc0_m2mf_transfer_rect()
23 uint32_t src_ofst = src->base; in nvc0_m2mf_transfer_rect()
24 uint32_t dst_ofst = dst->base; in nvc0_m2mf_transfer_rect()
26 uint32_t sy = src->y; in nvc0_m2mf_transfer_rect()
27 uint32_t dy = dst->y; in nvc0_m2mf_transfer_rect()
30 assert(dst->cpp == src->cpp); in nvc0_m2mf_transfer_rect()
32 nouveau_bufctx_refn(bctx, 0, src->bo, src->domain | NOUVEAU_BO_RD); in nvc0_m2mf_transfer_rect()
33 nouveau_bufctx_refn(bctx, 0, dst->bo, dst->domain | NOUVEAU_BO_WR); in nvc0_m2mf_transfer_rect()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_transfer.c21 const unsigned w = u_minify(res->width0, l); in nv50_m2mf_rect_setup()
22 const unsigned h = u_minify(res->height0, l); in nv50_m2mf_rect_setup()
24 rect->bo = mt->base.bo; in nv50_m2mf_rect_setup()
25 rect->domain = mt->base.domain; in nv50_m2mf_rect_setup()
26 rect->base = mt->level[l].offset; in nv50_m2mf_rect_setup()
27 if (mt->base.bo->offset != mt->base.address) in nv50_m2mf_rect_setup()
28 rect->base += mt->base.address - mt->base.bo->offset; in nv50_m2mf_rect_setup()
29 rect->pitch = mt->level[l].pitch; in nv50_m2mf_rect_setup()
30 if (util_format_is_plain(res->format)) { in nv50_m2mf_rect_setup()
31 rect->width = w << mt->ms_x; in nv50_m2mf_rect_setup()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/parser/
DParametersParser.java14 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
58 NameValue nv = nameValue(); in parse() local
59 parametersHeader.setParameter(nv); in parse()
72 NameValue nv = nameValue(); in parseNameValueList() local
73 parametersHeader.setParameter(nv.getName(), (String) nv.getValueAsObject()); in parseNameValueList()
/external/mesa3d/docs/relnotes/
D5.111 ------------
14 Even-numbered versions (such as 5.0) designate stable releases.
15 Odd-numbered versions (such as 5.1) designate new developmental releases.
19 ---------
25 ------------------------
41 NVIDIA's fragment-level programming feature.
43 - the DDX and DDY commands aren't fully tested
44 - there may be bugs in the parser
45 - the TEX and TXP instructions both do perspective correction
46 - the pack/unpack instructions may not be correct
[all …]
/external/epid-sdk/doc/html/
Dglobals_func_t.html1 <!-- HTML header for doxygen 1.8.10-->
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xht…
5 <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
6 <meta http-equiv="X-UA-Compatible" content="IE=9"/>
17 /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 …
19 /* @license-end */</script>
24 <div id="top"><!-- do not remove this div, it is closed by doxygen! -->
29 <td id="projectalign" style="padding-left: 0.5em;">
42 <!-- end header part -->
43 <!-- Generated by Doxygen 1.8.14 -->
[all …]

12345678910>>...41