HomeSort by relevance Sort by last modified time
    Searched refs:dup (Results 26 - 50 of 691) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/boringssl/src/crypto/digest/
internal.h 103 /* dup is called when an |EVP_MD_CTX| is copied and so the |pctx| also needs
105 EVP_PKEY_CTX* (*dup) (EVP_PKEY_CTX *pctx); member in struct:evp_md_pctx_ops
  /external/libhevc/common/arm64/
ihevc_padding.s 110 dup v0.16b,w8
111 dup v2.16b,w9
112 dup v4.16b,w10
113 dup v6.16b,w11
228 dup v0.8h,w8
229 dup v2.8h,w9
230 dup v4.8h,w10
231 dup v6.8h,w11
360 dup v0.16b,w8
361 dup v2.16b,w
    [all...]
ihevc_intra_pred_luma_planar.s 119 dup v29.8h,w5
121 dup v2.8b,w4 //nt
122 dup v16.8h,w4 //nt
128 dup v0.8b,w7 //src[nt-1]
135 dup v1.8b,w7 //src[3nt+1]
146 dup v5.8b,w8 //row + 1
147 dup v6.8b,w9 //nt - 1 - row
179 dup v27.8h,w4 //(1)
189 dup v20.8b, v4.8b[7] //(1)
192 dup v21.8b, v4.8b[6] //(2
    [all...]
ihevc_mem_fns.s 153 dup v0.8b,w1
182 dup v0.8b,w1
227 dup v0.8h,w1
255 dup v0.8h,w1
ihevc_intra_pred_filters_luma_mode_19_to_25.s 136 dup v30.8b,w7 //intra_pred_ang
241 dup v0.8b,w9 //intra_pred_ang
262 dup v31.8b, v4.8b[0]
268 dup v29.8b, v4.8b[1] //(ii)
289 dup v27.8b, v4.8b[2] //(iii)
293 dup v25.8b, v4.8b[3] //(iv)
308 dup v31.8b, v4.8b[4] //(v)
319 dup v29.8b, v4.8b[5] //(vi)
335 dup v27.8b, v4.8b[6] //(vii)
350 dup v25.8b, v4.8b[7] //(viii
    [all...]
ihevc_intra_pred_chroma_mode_27_to_33.s 126 dup v0.8b,w9 //intra_pred_ang
145 dup v31.8b, v4.8b[0]
151 dup v29.8b, v4.8b[1] //(ii)
175 dup v27.8b, v4.8b[2] //(iii)
179 dup v25.8b, v4.8b[3] //(iv)
194 dup v31.8b, v4.8b[4] //(v)
205 dup v29.8b, v4.8b[5] //(vi)
222 dup v27.8b, v4.8b[6] //(vii)
239 dup v25.8b, v4.8b[7] //(viii)
284 dup v31.8b, v4.8b[0
    [all...]
ihevc_intra_pred_luma_mode_27_to_33.s 129 dup v0.8b,w9 //intra_pred_ang
150 dup v31.8b, v4.8b[0]
156 dup v29.8b, v4.8b[1] //(ii)
180 dup v27.8b, v4.8b[2] //(iii)
184 dup v25.8b, v4.8b[3] //(iv)
199 dup v31.8b, v4.8b[4] //(v)
210 dup v29.8b, v4.8b[5] //(vi)
227 dup v27.8b, v4.8b[6] //(vii)
244 dup v25.8b, v4.8b[7] //(viii)
289 dup v31.8b, v4.8b[0
    [all...]
  /external/chromium_org/third_party/icu/source/common/
cstring.c 315 char *dup = (char *) uprv_malloc(len); local
317 if (dup) {
318 uprv_memcpy(dup, src, len);
321 return dup;
326 char *dup; local
329 dup = uprv_strdup(src);
331 dup = (char*)uprv_malloc(n+1);
332 if (dup) {
333 uprv_memcpy(dup, src, n);
334 dup[n] = 0
    [all...]
  /external/icu/icu4c/source/common/
cstring.c 315 char *dup = (char *) uprv_malloc(len); local
317 if (dup) {
318 uprv_memcpy(dup, src, len);
321 return dup;
326 char *dup; local
329 dup = uprv_strdup(src);
331 dup = (char*)uprv_malloc(n+1);
332 if (dup) {
333 uprv_memcpy(dup, src, n);
334 dup[n] = 0
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.as 40 * must dup the type node, but ID has been added.
42 * Referencing a rule result twice is ok; dup entire tree as
46 * a proper way to refactor. This needs to always call dup node
47 * and super.next() doesn't know which to call: dup node or dup tree.
53 // if out of elements and size is 1, dup (at most a single node
63 protected override function dup(el:Object):Object {
RewriteRuleTokenStream.as 55 protected override function dup(el:Object):Object {
56 throw new Error("dup can't be called for a token stream.");
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
RewriteRuleNodeStream.java 65 protected Object dup(Object el) { method in class:RewriteRuleNodeStream
66 // we dup every node, so don't have to worry about calling dup; short-
68 throw new UnsupportedOperationException("dup can't be called for a node stream.");
RewriteRuleSubtreeStream.java 58 * must dup the type node, but ID has been added.
60 * Referencing a rule result twice is ok; dup entire tree as
64 * a proper way to refactor. This needs to always call dup node
65 * and super.next() doesn't know which to call: dup node or dup tree.
71 // if out of elements and size is 1, dup (at most a single node
81 Object el = adaptor.dupNode(tree); // dup just the root (want node here)
85 protected Object dup(Object el) { method in class:RewriteRuleSubtreeStream
RewriteRuleTokenStream.java 73 protected Object dup(Object el) { method in class:RewriteRuleTokenStream
74 throw new UnsupportedOperationException("dup can't be called for a token stream.");
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.js 19 dup: function() {
20 // we dup every node, so don't have to worry about calling dup; short-
22 throw new Error("dup can't be called for a node stream.");
RewriteRuleTokenStream.js 25 dup: function(el) {
26 throw new Error("dup can't be called for a token stream.");
  /external/chromium_org/content/common/
sandbox_util.cc 30 // dup()ing and close()ing.
34 // the other process from the I/O thread. Without the dup, calling code might
37 int fd = should_close_source ? handle : ::dup(handle);
  /system/extras/tests/cpueater/
cpueater.c 59 dup(1);
  /system/keymaster/include/keymaster/
google_keymaster_utils.h 65 * responsibility. Note that the dup is necessarily returned as a pointer, so size is lost. Call
69 T* dup = new T[N]; variable
70 if (dup != NULL) {
71 memcpy(dup, &a, array_size(a));
73 return dup;
  /dalvik/dx/tests/107-verify-stack-ops/
run 28 oneop dup
  /prebuilts/misc/common/swig/include/2.0.11/guile/
ports.i 20 which reads or writes from a dup'ed file descriptor.
33 fd=dup(SCM_FPORT_FDES($input));
  /external/chromium_org/base/memory/
shared_memory_android.cc 43 readonly_mapped_file_ = dup(mapped_file_);
45 DPLOG(ERROR) << "dup() failed";
  /external/chromium_org/ipc/
ipc_platform_file.cc 33 // dup()ing and close()ing.
37 // the other process from the I/O thread. Without the dup, calling code might
40 int fd = close_source_handle ? handle : ::dup(handle);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
module_ppapi.cc 51 NaClSecureRngModuleSetUrandomFd(dup(private_interface_->UrandomFD()));
  /external/oprofile/daemon/
opd_extended.h 51 int (*dup)(struct sfile *, struct sfile *); member in struct:opd_ext_sfile_handlers

Completed in 339 milliseconds

12 3 4 5 6 7 8 91011>>