HomeSort by relevance Sort by last modified time
    Searched refs:nv (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/nist-sip/java/gov/nist/javax/sip/parser/
ParametersParser.java 58 NameValue nv = nameValue(); local
59 parametersHeader.setParameter(nv);
72 NameValue nv = nameValue(); local
73 parametersHeader.setParameter(nv.getName(), (String) nv.getValueAsObject());
AuthenticationInfoParser.java 78 NameValue nv = super.nameValue(); local
79 authenticationInfo.setParameter(nv);
85 nv = super.nameValue();
86 authenticationInfo.setParameter(nv);
ChallengeParser.java 71 NameValue nv = this.nameValue('='); local
72 header.setParameter(nv);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_buffer.c 105 nouveau_buffer_download(struct nouveau_context *nv, struct nv04_resource *buf,
114 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
118 nv->copy_data(nv, bounce, offset, NOUVEAU_BO_GART,
121 if (nouveau_bo_map(bounce, NOUVEAU_BO_RD, nv->screen->client))
134 nouveau_buffer_upload(struct nouveau_context *nv, struct nv04_resource *buf,
141 if (size <= 192 && (nv->push_data || nv->push_cb)) {
143 nv->push_cb(nv, buf->bo, buf->domain, buf->offset, buf->base.width0
177 struct nouveau_context *nv = nouveau_context(pipe); local
203 struct nouveau_context *nv = nouveau_context(pipe); local
252 struct nouveau_context *nv = nouveau_context(pipe); local
    [all...]
nouveau_context.h 62 nouveau_scratch_done(struct nouveau_context *nv)
64 nv->scratch.wrap = nv->scratch.id;
65 if (unlikely(nv->scratch.nr_runout))
66 nouveau_scratch_runout_release(nv);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.c 105 nouveau_buffer_download(struct nouveau_context *nv, struct nv04_resource *buf,
114 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
118 nv->copy_data(nv, bounce, offset, NOUVEAU_BO_GART,
121 if (nouveau_bo_map(bounce, NOUVEAU_BO_RD, nv->screen->client))
134 nouveau_buffer_upload(struct nouveau_context *nv, struct nv04_resource *buf,
141 if (size <= 192 && (nv->push_data || nv->push_cb)) {
143 nv->push_cb(nv, buf->bo, buf->domain, buf->offset, buf->base.width0
177 struct nouveau_context *nv = nouveau_context(pipe); local
203 struct nouveau_context *nv = nouveau_context(pipe); local
252 struct nouveau_context *nv = nouveau_context(pipe); local
    [all...]
nouveau_context.h 62 nouveau_scratch_done(struct nouveau_context *nv)
64 nv->scratch.wrap = nv->scratch.id;
65 if (unlikely(nv->scratch.nr_runout))
66 nouveau_scratch_runout_release(nv);
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingFunctionAddresses.java 168 NameValue nv; local
170 nv = (NameValue) li.next();
171 if (nv.getName().equalsIgnoreCase(ParameterNamesIms.CCF)) {
175 ccfNV.setName(nv.getName());
176 ccfNV.setValueAsObject(nv.getValueAsObject());
253 NameValue nv; local
256 nv = (NameValue) li.next();
257 if (nv.getName().equalsIgnoreCase(ParameterNamesIms.ECF)) {
261 ecfNV.setName(nv.getName());
262 ecfNV.setValueAsObject(nv.getValueAsObject())
281 NameValue nv; local
    [all...]
SecurityAgree.java 96 NameValue nv = super.parameters.getNameValue(name.toLowerCase()); local
97 if (nv == null)
99 nv = new NameValue(name, value);
104 nv.setQuotedValue();
111 super.setParameter(nv);
115 nv.setValueAsObject(value);
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParametersHeader.java 149 NameValue nv = parameters.getNameValue(name); local
150 if (nv != null) {
151 nv.setValueAsObject(value);
153 nv = new NameValue(name, value);
154 this.parameters.set(nv);
178 NameValue nv = parameters.getNameValue(name); local
179 if (nv != null) {
180 nv.setValueAsObject(value);
181 nv.setQuotedValue();
183 nv = new NameValue(name, value)
246 NameValue nv = parameters.getNameValue(name); local
483 NameValue nv = new NameValue(); local
    [all...]
AuthenticationInfo.java 54 public void add(NameValue nv) {
55 parameters.set(nv);
210 NameValue nv = super.parameters.getNameValue(name.toLowerCase()); local
211 if (nv == null) {
212 nv = new NameValue(name, value);
229 nv.setQuotedValue();
231 super.setParameter(nv);
233 nv.setValueAsObject(value);
Contact.java 84 NameValue nv = parameters.getNameValue(name); local
85 if (nv != null) {
86 nv.setValueAsObject(value);
88 nv = new NameValue(name, value);
90 nv.setQuotedValue();
91 this.parameters.set(nv);
AuthenticationHeader.java 106 NameValue nv = super.parameters.getNameValue(name.toLowerCase()); local
107 if (nv == null) {
108 nv = new NameValue(name, value);
126 nv.setQuotedValue();
134 super.setParameter(nv);
136 nv.setValueAsObject(value);
259 NameValue nv = new NameValue(ParameterNames.URI, uri); local
260 nv.setQuotedValue();
261 super.parameters.set(nv);
  /external/nist-sip/java/gov/nist/javax/sip/address/
TelephoneNumber.java 156 NameValue nv = new NameValue(POSTDIAL, p); local
157 parameters.set(nv);
165 NameValue nv = new NameValue(name, value); local
166 parameters.set(nv);
234 NameValue nv = new NameValue(name, value); local
235 this.parameters.set(nv);
  /external/qemu/audio/
mixeng_template.h 49 IN_T nv = ENDIAN_CONVERT (v); local
53 return nv * (1.f / (mixeng_real) (IN_MAX - IN_MIN));
55 return (nv - HALF) * (1.f / (mixeng_real) IN_MAX);
59 return nv / (mixeng_real) (IN_MAX - IN_MIN);
61 return (nv - HALF) / (mixeng_real) IN_MAX;
86 IN_T nv = ENDIAN_CONVERT (v); local
88 return ((int64_t) nv) << (32 - SHIFT);
90 return ((int64_t) nv - HALF) << (32 - SHIFT);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 66 NodeVector nv = (m_cache != null) ? m_cache.getVector() : null; local
67 return nv;
95 final NodeVector nv = getVector(); local
96 return (nv != null);
119 NodeVector nv = getVector(); local
120 if (nv != null) {
553 final NodeVector nv; local
555 nv = (NodeVector) vec.clone();
562 newCache.setVector(nv);
565 vec = nv;
597 NodeVector nv = cache.getVector(); local
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
safe-ctype.c 138 #define nv _sch_isnvsp macro
156 #define Z (const unsigned short) (nv |cn) /* NUL */
157 #define M (const unsigned short) (nv|sp |cn) /* cursor movement: \f \v */
159 #define T (const unsigned short) (nv|sp|bl|cn) /* tab */
160 #define S (const unsigned short) (nv|sp|bl|pr) /* space */
  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 103 public void set(NameValue nv) {
104 this.nameValueMap.put(nv.getName().toLowerCase(), nv); local
152 Collection nv = this.getNameValue(name.toLowerCase()); local
153 if (nv != null)
154 return nv;
ParserCore.java 82 NameValue nv = new NameValue(name.tokenValue,str,isFlag); local
83 if (quoted) nv.setQuotedValue();
84 return nv;
NameValueList.java 123 public void set(NameValue nv) {
124 this.hmap.put(nv.getName().toLowerCase(), nv); local
173 NameValue nv = this.getNameValue(name.toLowerCase()); local
174 if (nv != null)
175 return nv.getValueAsObject();
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 115 Index* nv = W + (n+1); local
138 nv[i] = 1; // node i is just one node
161 nv[i] = 0; /* absorb i into element n */
165 nv[n]++;
182 nvk = nv[k]; /* # of nodes k represents */
183 nel += nvk; /* nv[k] nodes of A eliminated */
210 nv[k] = -nvk; /* flag k as in Lk */
231 if((nvi = nv[i]) <= 0) continue; /* node i dead, or seen */
233 nv[i] = -nvi; /* negate nv[i] to denote i in Lk*
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PAccessNetworkInfoParser.java 107 NameValue nv = super.nameValue('='); local
108 accessNetworkInfo.setParameter(nv);
PChargingVectorParser.java 105 NameValue nv = this.nameValue('='); local
106 chargingVector.setParameter(nv);
PChargingFunctionAddressesParser.java 126 NameValue nv = this.nameValue('='); local
128 //chargingFunctionAddresses.setParameter(nv);
129 chargingFunctionAddresses.setMultiParameter(nv);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_transfer.c 177 nvc0_m2mf_push_linear(struct nouveau_context *nv,
181 struct nvc0_context *nvc0 = nvc0_context(&nv->pipe);
182 struct nouveau_pushbuf *push = nv->pushbuf;
222 nve4_p2mf_push_linear(struct nouveau_context *nv,
226 struct nvc0_context *nvc0 = nvc0_context(&nv->pipe);
227 struct nouveau_pushbuf *push = nv->pushbuf;
265 nvc0_m2mf_copy_linear(struct nouveau_context *nv,
270 struct nouveau_pushbuf *push = nv->pushbuf;
271 struct nouveau_bufctx *bctx = nvc0_context(&nv->pipe)->bufctx;
303 nve4_m2mf_copy_linear(struct nouveau_context *nv,
    [all...]

Completed in 417 milliseconds

1 2 3 4