/external/dropbear/libtomcrypt/ |
filter.pl | 6 $ins = shift; 9 open(INS,"<$ins"); 17 while (<INS>) { 20 close INS;
|
/external/clang/test/Analysis/ |
outofbound.c | 95 static const double ins[] = {1e-8, 1e-7, 1e-6, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1, local 99 if (in < ins[eee]) { 104 if (in < ins[eee]) { 109 if (in < ins[eee]) { 114 if (in < ins[eee]) { 119 if (in < ins[eee]) { // expected-warning {{Access out-of-bound array element (buffer overflow)}}
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
nacl_subprocess.cc | 83 params->ins()[i]->u.bval = input; 88 params->ins()[i]->u.dval = input; 101 params->ins()[i]->arrays.carr = input; 102 params->ins()[i]->u.count = static_cast<nacl_abi_size_t>(len); 107 params->ins()[i]->u.hval = input; 112 params->ins()[i]->u.ival = input; 117 params->ins()[i]->u.lval = input; 128 params->ins()[i]->arrays.str = input;
|
srpc_params.h | 36 NaClSrpcArg** ins() const { return const_cast<NaClSrpcArg**>(ins_); } function in class:plugin::SrpcParams
|
srpc_client.cc | 26 const char* ins, 34 ins_(STRDUP(ins)), 46 char* ins() const { return ins_; } function in class:plugin::MethodInfo 156 return params->Init(method_info->ins(), method_info->outs()); 181 params->ins(),
|
/frameworks/rs/cpu_ref/ |
rsCpuScriptGroup.cpp | 73 if (sl->ins[ct]) { 74 mp->ptrIn = (const uint8_t *)sl->ins[ct]->mHal.drvState.lod[0].mallocPtr; 75 istep = sl->ins[ct]->mHal.state.elementSizeBytes; 78 mp->in = mp->ptrIn + sl->ins[ct]->mHal.drvState.lod[0].stride * p->y; 80 if (sl->ins[ct]->mHal.drvState.lod[0].dimY > p->lid) { 81 mp->in = mp->ptrIn + sl->ins[ct]->mHal.drvState.lod[0].stride * p->lid; 112 Vector<Allocation *> ins; local 183 ins.add(ain); 196 for (size_t ct=0; ct < ins.size(); ct++) { 201 si->forEachMtlsSetup(ins[ct], outs[ct], NULL, 0, NULL, &mtls) [all...] |
rsCpuScriptGroup.h | 43 Allocation *const* ins; member in struct:android::renderscript::CpuScriptGroupImpl::ScriptList
|
/packages/apps/Browser/src/com/android/browser/homepages/ |
HomeProvider.java | 96 InputStream ins = context.getContentResolver()
local 98 return new WebResourceResponse("text/html", "utf-8", ins);
103 PipedInputStream ins = new PipedInputStream();
local 104 PipedOutputStream outs = new PipedOutputStream(ins);
106 return new WebResourceResponse("text/html", "utf-8", ins);
|
/external/chromium/build/ |
sanitize-mac-build-log.sed | 21 \|^ /Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/|d
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
getpc.h | 99 char ins[16]; member in struct:CallUnrollInfo 100 // How many bytes to match from ins array? 147 callunrollinfo[i].ins, callunrollinfo[i].ins_size)) {
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
getpc.h | 97 char ins[16]; member in struct:CallUnrollInfo 98 // How many bytes to match from ins array? 144 callunrollinfo[i].ins, callunrollinfo[i].ins_size)) {
|
/external/linux-tools-perf/scripts/perl/ |
workqueue-stats.pl | 70 printf("%3s %6s %6s\t%-20s\n", "cpu", "ins", "exec", "name"); 74 my $ins = $$wqhash{'inserted'} || 0; 77 if ($ins || $exe) { 78 printf("%3u %6u %6u\t%-20s\n", $cpu, $ins, $exe, $comm);
|
/dalvik/vm/interp/ |
Stack.cpp | 211 * the stack that has no ins, outs, or locals, and no break frame above it. 395 * Push a call frame on. If there isn't enough room for ins, locals, 448 u4* ins; local 454 /* "ins" for new frame start at frame pointer plus locals */ 455 ins = ((u4*)self->interpSave.curFrame) + 458 //ALOGD(" FP is %p, INs live at >= %p", self->interpSave.curFrame, ins); 465 *ins++ = (u4) obj; 473 memcpy(ins, &val, 8); // EABI prevents direct store 474 ins += 2 554 u4* ins; local 663 s4* ins; local [all...] |
/bionic/libc/arch-mips/string/ |
memset.S | 85 ins a2,zero,0,1 93 ins a1,a1,16,16 135 ins $a2,$0,0,2 165 ins a1, a1, 8, 8 # Replicate fill byte into half-word. 166 ins a1, a1, 16, 16 # Replicate fill byte into word.
|
/system/media/camera/docs/ |
metadata_model.py | 518 for name, ins in ins_dict.iteritems(): 519 ins._leafs = [] 526 ins = ins_dict.get(ins_str, InnerNamespace(ins_str, parent)) 527 ins_dict[ins_str] = ins 529 if p not in ins._leafs: 530 ins._leafs.append(p) 532 for name, ins in ins_dict.iteritems(): 533 ins.validate_tree() 534 # construct children INS 535 self._construct_inner_namespaces(ins, depth + 1 [all...] |
/frameworks/base/core/tests/coretests/src/android/text/ |
PackedIntVectorTest.java | 29 int[] ins = new int[width]; local 46 ins[j] = i + j; 52 p.insertAt(at, ins);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_util.cpp | 65 Item *ins = new Item(data); local 67 ins->next = pos->next; 68 ins->prev = pos; 69 pos->next->prev = ins; 70 pos->next = ins; 73 term = ins;
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_util.cpp | 65 Item *ins = new Item(data); local 67 ins->next = pos->next; 68 ins->prev = pos; 69 pos->next->prev = ins; 70 pos->next = ins; 73 term = ins;
|
/external/clang/test/CXX/class.access/ |
p6.cpp | 165 A ins; member in class:test7::B 168 void foo(int arg[__builtin_offsetof(B, ins)]);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
DiskLruCache.java | 415 InputStream[] ins = new InputStream[valueCount]; local 418 ins[i] = new FileInputStream(entry.getCleanFile(i)); 423 if (ins[i] != null) { 424 Util.closeQuietly(ins[i]); 438 return new Snapshot(key, entry.sequenceNumber, ins, entry.lengths); 668 private final InputStream[] ins; field in class:DiskLruCache.Snapshot 671 private Snapshot(String key, long sequenceNumber, InputStream[] ins, long[] lengths) { 674 this.ins = ins; 689 return ins[index] [all...] |
/external/openfst/src/include/fst/ |
label-reachable.h | 161 StateId ins = fst_->NumStates(); local 163 FindIntervals(ins); 410 StateId ins = fst_->NumStates(); local 411 StateId ons = ins; 413 vector<ssize_t> indeg(ins, 0); 416 for (StateId s = 0; s < ins; ++s) { 467 void FindIntervals(StateId ins) { 477 isets.resize(ins); 493 for (ssize_t s = 0; s < ins; ++s) { 500 VLOG(2) << "# of states: " << ins; 502 VLOG(2) << "# of intervals\/state: " << nintervals\/ins; local [all...] |
/external/jpeg/ |
mips_idct_le.S | 104 ins $t0, $v0, 16, 16 # ... tmp0 143 ins $t2, $v0, 16, 16 # ... tmp1 148 ins $t4, $v1, 16, 16 # ... tmp2 153 ins $t6, $v0, 16, 16 # ... tmp3 177 ins $t1, $v0, 16, 16 # ... tmp4 185 ins $t7, $v1, 16, 16 # ... tmp7 193 ins $t5, $v0, 16, 16 # ... tmp6 197 ins $t3, $v1, 16, 16 # ... tmp5 341 ins $t0, $s0, 16, 16 # A a 357 ins $s0, $s0, 16, 16 # a [all...] |
/external/javassist/src/main/javassist/tools/rmi/ |
AppletServer.java | 144 private void processRMI(InputStream ins, OutputStream outs) 147 ObjectInputStream in = new ObjectInputStream(ins); 221 private void lookupName(String cmd, InputStream ins, OutputStream outs) 224 ObjectInputStream in = new ObjectInputStream(ins);
|
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/ |
DiskLruCache.java | 490 InputStream[] ins = new InputStream[valueCount]; local 493 ins[i] = new FileInputStream(entry.getCleanFile(i)); 506 return new Snapshot(key, entry.sequenceNumber, ins); 733 private final InputStream[] ins; field in class:DiskLruCache.Snapshot 735 private Snapshot(String key, long sequenceNumber, InputStream[] ins) { 738 this.ins = ins; 754 return ins[index]; 765 for (InputStream in : ins) { [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
actions.c | 31 void showIns(FILE *o, const Ins *i, const Ins *base){ 37 for(const Ins *j = &(&i)[1]; j < (Ins*) i.i.link; ++j) 41 o << "goto " << ((Ins*) i.i.link - &base); 44 o << "fork " << ((Ins*) i.i.link - &base); 147 MatchOp_compile(RegExp *re, Char *rep, Ins *i) 149 Ins *j; 170 AltOp_compile(RegExp *re, Char *rep, Ins *i){ 171 Ins *j 644 Ins *ins, *eoi; local [all...] |