Home
last modified time | relevance | path

Searched refs:nv (Results 1 – 25 of 504) sorted by relevance

12345678910>>...21

/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_buffer.c141 nouveau_transfer_staging(struct nouveau_context *nv, in nouveau_transfer_staging() argument
147 if (!nv->push_data) in nouveau_transfer_staging()
150 if ((size <= nv->screen->transfer_pushbuf_threshold) && permit_pb) { in nouveau_transfer_staging()
156 nouveau_mm_allocate(nv->screen->mm_GART, size, &tx->bo, &tx->offset); in nouveau_transfer_staging()
171 nouveau_transfer_read(struct nouveau_context *nv, struct nouveau_transfer *tx) in nouveau_transfer_read() argument
177 NOUVEAU_DRV_STAT(nv->screen, buf_read_bytes_staging_vid, size); in nouveau_transfer_read()
179 nv->copy_data(nv, tx->bo, tx->offset, NOUVEAU_BO_GART, in nouveau_transfer_read()
182 if (nouveau_bo_wait(tx->bo, NOUVEAU_BO_RD, nv->client)) in nouveau_transfer_read()
192 nouveau_transfer_write(struct nouveau_context *nv, struct nouveau_transfer *tx, in nouveau_transfer_write() argument
206 NOUVEAU_DRV_STAT(nv->screen, buf_write_bytes_staging_vid, size); in nouveau_transfer_write()
[all …]
Dnouveau_context.h79 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()
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()
109 if (nv->stats.buf_cache_count) { in nouveau_context_update_frame_stats()
110 nv->stats.buf_cache_count = 0; in nouveau_context_update_frame_stats()
111 nv->stats.buf_cache_frame |= 1; in nouveau_context_update_frame_stats()
112 if ((nv->stats.buf_cache_frame & 0xf) == 0xf) in nouveau_context_update_frame_stats()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DParametersHeader.java149 NameValue nv = parameters.getNameValue(name); in setParameter() local
150 if (nv != null) { in setParameter()
151 nv.setValueAsObject(value); in setParameter()
153 nv = new NameValue(name, value); in setParameter()
154 this.parameters.set(nv); in setParameter()
178 NameValue nv = parameters.getNameValue(name); in setQuotedParameter() local
179 if (nv != null) { in setQuotedParameter()
180 nv.setValueAsObject(value); in setQuotedParameter()
181 nv.setQuotedValue(); in setQuotedParameter()
183 nv = new NameValue(name, value); in setQuotedParameter()
[all …]
DAuthenticationInfo.java54 public void add(NameValue nv) { in add() argument
55 parameters.set(nv); in add()
210 NameValue nv = super.parameters.getNameValue(name.toLowerCase()); in setParameter() local
211 if (nv == null) { in setParameter()
212 nv = new NameValue(name, value); in setParameter()
229 nv.setQuotedValue(); in setParameter()
231 super.setParameter(nv); in setParameter()
233 nv.setValueAsObject(value); in setParameter()
DAuthenticationHeader.java106 NameValue nv = super.parameters.getNameValue(name.toLowerCase()); in setParameter() local
107 if (nv == null) { in setParameter()
108 nv = new NameValue(name, value); in setParameter()
126 nv.setQuotedValue(); in setParameter()
134 super.setParameter(nv); in setParameter()
136 nv.setValueAsObject(value); in setParameter()
259 NameValue nv = new NameValue(ParameterNames.URI, uri); in setURI() local
260 nv.setQuotedValue(); in setURI()
261 super.parameters.set(nv); in setURI()
DContact.java84 NameValue nv = parameters.getNameValue(name); in setParameter() local
85 if (nv != null) { in setParameter()
86 nv.setValueAsObject(value); in setParameter()
88 nv = new NameValue(name, value); in setParameter()
90 nv.setQuotedValue(); in setParameter()
91 this.parameters.set(nv); in setParameter()
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
DPChargingFunctionAddresses.java168 NameValue nv; in getChargingCollectionFunctionAddresses() local
170 nv = (NameValue) li.next(); in getChargingCollectionFunctionAddresses()
171 if (nv.getName().equalsIgnoreCase(ParameterNamesIms.CCF)) { in getChargingCollectionFunctionAddresses()
175 ccfNV.setName(nv.getName()); in getChargingCollectionFunctionAddresses()
176 ccfNV.setValueAsObject(nv.getValueAsObject()); in getChargingCollectionFunctionAddresses()
253 NameValue nv; in getEventChargingFunctionAddresses() local
256 nv = (NameValue) li.next(); in getEventChargingFunctionAddresses()
257 if (nv.getName().equalsIgnoreCase(ParameterNamesIms.ECF)) { in getEventChargingFunctionAddresses()
261 ecfNV.setName(nv.getName()); in getEventChargingFunctionAddresses()
262 ecfNV.setValueAsObject(nv.getValueAsObject()); in getEventChargingFunctionAddresses()
[all …]
DSecurityAgree.java96 NameValue nv = super.parameters.getNameValue(name.toLowerCase()); in setParameter() local
97 if (nv == null) in setParameter()
99 nv = new NameValue(name, value); in setParameter()
104 nv.setQuotedValue(); in setParameter()
111 super.setParameter(nv); in setParameter()
115 nv.setValueAsObject(value); in setParameter()
/external/skqp/samplecode/
DSamplePatch.cpp80 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()
99 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet()
101 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0; in eval_sheet()
109 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv, in draw() argument
111 if (nu < 1 || nv < 1) { in draw()
115 int i, npts = (nu + nv) * 2; in draw()
119 SkPoint* edge2 = edge1 + nv; in draw()
124 eval_patch_edge(fPts + 3, edge1, nv); in draw()
[all …]
/external/skia/samplecode/
DSamplePatch.cpp78 static void eval_sheet(const SkPoint edge[], int nu, int nv, int iu, int iv, in eval_sheet() argument
82 const int BR = TR + nv; in eval_sheet()
86 SkScalar v = SkIntToScalar(iv) / nv; in eval_sheet()
97 v * edge[BR+nu-iu].fX + (1 - u) * edge[BL+nv-iv].fX - x0; in eval_sheet()
99 v * edge[BR+nu-iu].fY + (1 - u) * edge[BL+nv-iv].fY - y0; in eval_sheet()
107 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv, in draw() argument
109 if (nu < 1 || nv < 1) { in draw()
113 int i, npts = (nu + nv) * 2; in draw()
117 SkPoint* edge2 = edge1 + nv; in draw()
122 eval_patch_edge(fPts + 3, edge1, nv); in draw()
[all …]
/external/curl/src/
Dtool_setopt.c297 const struct NameValue *nv = NULL; in tool_setopt_enum() local
298 for(nv = nvlist; nv->name; nv++) { in tool_setopt_enum()
299 if(nv->value == lval) in tool_setopt_enum()
302 if(!nv->name) { in tool_setopt_enum()
309 CODE2("curl_easy_setopt(hnd, %s, (long)%s);", name, nv->name); in tool_setopt_enum()
333 const struct NameValue *nv = NULL; in tool_setopt_flags() local
336 for(nv = nvlist; nv->name; nv++) { in tool_setopt_flags()
337 if((nv->value & ~ rest) == 0) { in tool_setopt_flags()
339 rest &= ~ nv->value; /* remove bits handled here */ in tool_setopt_flags()
341 preamble, nv->name, rest ? " |" : ");"); in tool_setopt_flags()
[all …]
/external/eigen/Eigen/src/OrderingMethods/
DAmd.h114 StorageIndex* nv = W + (n+1); in minimum_degree_ordering() local
137 nv[i] = 1; // node i is just one node in minimum_degree_ordering()
165 nv[i] = 0; /* absorb i into element n */ in minimum_degree_ordering()
169 nv[n]++; in minimum_degree_ordering()
190 nvk = nv[k]; /* # of nodes k represents */ in minimum_degree_ordering()
218 nv[k] = -nvk; /* flag k as in Lk */ in minimum_degree_ordering()
239 if((nvi = nv[i]) <= 0) continue; /* node i dead, or seen */ in minimum_degree_ordering()
241 nv[i] = -nvi; /* negate nv[i] to denote i in Lk*/ in minimum_degree_ordering()
271 nvi = -nv[i]; /* nv[i] was negated */ in minimum_degree_ordering()
319 if((nvj = nv[j]) <= 0) continue; /* node j dead or in Lk */ in minimum_degree_ordering()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DNodeSequence.java66 NodeVector nv = (m_cache != null) ? m_cache.getVector() : null; in getVector() local
67 return nv; in getVector()
95 final NodeVector nv = getVector(); in hasCache() local
96 return (nv != null); in hasCache()
119 NodeVector nv = getVector(); in markCacheComplete() local
120 if (nv != null) { in markCacheComplete()
553 final NodeVector nv; in setItem() local
555 nv = (NodeVector) vec.clone(); in setItem()
562 newCache.setVector(nv); in setItem()
565 vec = nv; in setItem()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/parser/
DParametersParser.java58 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()
DAuthenticationInfoParser.java78 NameValue nv = super.nameValue(); in parse() local
79 authenticationInfo.setParameter(nv); in parse()
85 nv = super.nameValue(); in parse()
86 authenticationInfo.setParameter(nv); in parse()
/external/llvm-project/llvm/test/MC/AArch64/
Darm64-nv-cond.s3 fcsel d28,d31,d31,nv
4 csel x0,x0,x0,nv
5 ccmp x0,x0,#0,nv
6 b.nv #0
/external/llvm/test/MC/AArch64/
Darm64-nv-cond.s3 fcsel d28,d31,d31,nv
4 csel x0,x0,x0,nv
5 ccmp x0,x0,#0,nv
6 b.nv #0
/external/nist-sip/java/gov/nist/javax/sip/address/
DTelephoneNumber.java156 NameValue nv = new NameValue(POSTDIAL, p); in setPostDial() local
157 parameters.set(nv); in setPostDial()
165 NameValue nv = new NameValue(name, value); in setParm() local
166 parameters.set(nv); in setParm()
234 NameValue nv = new NameValue(name, value); in setParameter() local
235 this.parameters.set(nv); in setParameter()
/external/perfetto/src/trace_processor/db/
Dtyped_column_internal.h101 static SerializedType Get(const NullableVector<SerializedType>& nv,
103 return nv.GetNonNull(idx);
127 const NullableVector<SerializedType>& nv,
129 return nv.Get(idx);
155 static StringPool::Id Get(const NullableVector<StringPool::Id>& nv,
157 return nv.GetNonNull(idx);
178 const NullableVector<StringPool::Id>& nv,
180 StringPool::Id id = nv.GetNonNull(idx);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/
DCacheTest.java26 CacheValue<Object> nv = CacheValue.getInstance(null); in testNullCacheValue() local
27 assertTrue("null CacheValue isNull()", nv.isNull()); in testNullCacheValue()
28 assertTrue("null CacheValue get()==null", nv.get() == null); in testNullCacheValue()
29 assertTrue("null CacheValue reset==null", nv.resetIfCleared(null) == null); in testNullCacheValue()
31 Object v = nv.resetIfCleared(this); in testNullCacheValue()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/impl/
DCacheTest.java29 CacheValue<Object> nv = CacheValue.getInstance(null); in testNullCacheValue() local
30 assertTrue("null CacheValue isNull()", nv.isNull()); in testNullCacheValue()
31 assertTrue("null CacheValue get()==null", nv.get() == null); in testNullCacheValue()
32 assertTrue("null CacheValue reset==null", nv.resetIfCleared(null) == null); in testNullCacheValue()
34 Object v = nv.resetIfCleared(this); in testNullCacheValue()
/external/tpm2-tss/src/tss2-fapi/api/
DFapi_NvExtend.c294 command->nv_obj = object->misc.nv; in Fapi_NvExtend_Finish()
297 if (object->misc.nv.public.nvPublic.attributes & TPMA_NV_PPWRITE) { in Fapi_NvExtend_Finish()
301 if (object->misc.nv.public.nvPublic.attributes & TPMA_NV_OWNERWRITE) { in Fapi_NvExtend_Finish()
322 object->misc.nv.public.nvPublic.nameAlg); in Fapi_NvExtend_Finish()
367 hashAlg = object->misc.nv.public.nvPublic.nameAlg; in Fapi_NvExtend_Finish()
383 event->pcr = object->misc.nv.public.nvPublic.nvIndex; in Fapi_NvExtend_Finish()
396 if (command->nv_object.misc.nv.event_log) { in Fapi_NvExtend_Finish()
398 = json_tokener_parse(command->nv_object.misc.nv.event_log); in Fapi_NvExtend_Finish()
420 SAFE_FREE(object->misc.nv.event_log); in Fapi_NvExtend_Finish()
421 strdup_check(object->misc.nv.event_log, in Fapi_NvExtend_Finish()
[all …]
DFapi_NvRead.c261 command->nv_obj = object->misc.nv; in Fapi_NvRead_Finish()
264 *size = object->misc.nv.public.nvPublic.dataSize; in Fapi_NvRead_Finish()
265 command->numBytes = object->misc.nv.public.nvPublic.dataSize; in Fapi_NvRead_Finish()
268 if (object->misc.nv.public.nvPublic.attributes & TPMA_NV_PPREAD) { in Fapi_NvRead_Finish()
272 if (object->misc.nv.public.nvPublic.attributes & TPMA_NV_OWNERREAD) { in Fapi_NvRead_Finish()
293 object->misc.nv.public.nvPublic.nameAlg); in Fapi_NvRead_Finish()
313 strdup_check(*logData, object->misc.nv.event_log, r, error_cleanup); in Fapi_NvRead_Finish()
/external/nist-sip/java/gov/nist/core/
DDuplicateNameValueList.java103 public void set(NameValue nv) { in set() argument
104 this.nameValueMap.put(nv.getName().toLowerCase(), nv); in set() local
152 Collection nv = this.getNameValue(name.toLowerCase()); in getValue() local
153 if (nv != null) in getValue()
154 return nv; in getValue()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_transfer.c199 nvc0_m2mf_push_linear(struct nouveau_context *nv, in nvc0_m2mf_push_linear() argument
203 struct nvc0_context *nvc0 = nvc0_context(&nv->pipe); in nvc0_m2mf_push_linear()
204 struct nouveau_pushbuf *push = nv->pushbuf; in nvc0_m2mf_push_linear()
241 nve4_p2mf_push_linear(struct nouveau_context *nv, in nve4_p2mf_push_linear() argument
245 struct nvc0_context *nvc0 = nvc0_context(&nv->pipe); in nve4_p2mf_push_linear()
246 struct nouveau_pushbuf *push = nv->pushbuf; in nve4_p2mf_push_linear()
281 nvc0_m2mf_copy_linear(struct nouveau_context *nv, in nvc0_m2mf_copy_linear() argument
286 struct nouveau_pushbuf *push = nv->pushbuf; in nvc0_m2mf_copy_linear()
287 struct nouveau_bufctx *bctx = nvc0_context(&nv->pipe)->bufctx; in nvc0_m2mf_copy_linear()
319 nve4_m2mf_copy_linear(struct nouveau_context *nv, in nve4_m2mf_copy_linear() argument
[all …]

12345678910>>...21