HomeSort by relevance Sort by last modified time
    Searched defs:local (Results 176 - 200 of 478) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/zlib/src/test/
infcover.c 20 #define local static macro
71 local void *mem_alloc(void *mem, unsigned count, unsigned size)
112 local void mem_free(void *mem, void *ptr)
158 local void mem_setup(z_stream *strm)
176 local void mem_limit(z_stream *strm, size_t limit)
184 local void mem_used(z_stream *strm, char *prefix)
192 local void mem_high(z_stream *strm, char *prefix)
200 local void mem_done(z_stream *strm, char *prefix)
245 local unsigned char *h2b(const char *hex, unsigned *len)
284 local void inf(char *hex, char *what, unsigned step, int win, unsigned len
    [all...]
minigzip.c 139 # define local static macro
142 # define local macro
366 local char buf[BUFLEN];
434 local char buf[BUFLEN];
461 local char outfile[MAX_NAME_LEN];
499 local char buf[MAX_NAME_LEN];
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 180 Time local = new Time("America/Los_Angeles"); local
185 local.set(0, test.minute1, test.hour1, test.day1, test.month1, test.year1);
187 local.normalize(false /* use isDst */);
188 local.monthDay += test.offset;
189 local.normalize(true /* ignore isDst */);
190 if (local.year != test.year2 || local.month != test.month2
191 || local.monthDay != test.day2 || local.hour != test.hour2
192 || local.minute != test.minute2)
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 47 * System.out.println("Local name: " + parts[1]);
52 * System.out.println("Local name: " + parts[1]);
322 * <dd>The local name (without prefix).</dd>
343 * local name, and the XML qualified name; or null if there
637 * URI part (or empty string), the local part,
692 String local = qName.substring(index+1);
704 name[1] = local.intern();
686 String local = qName.substring(index+1); local
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionManager.java 331 TestManagedConnection local = new TestManagedConnection(remote, false); local
332 mManagedConnectionByRemote.put(remote, local);
333 return local;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
  /art/compiler/optimizing/
builder.cc 76 HLocal* local = new (arena_) HLocal(i); local
77 entry_block_->AddInstruction(local);
78 locals_.Put(i, local);
98 HLocal* local = GetLocalAt(locals_index++); local
99 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter));
116 HLocal* local = GetLocalAt(locals_index++); local
117 // Store the parameter value in the local that the dex code will use
119 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter));
800 HLocal* local = GetLocalAt(register_index); local
801 current_block_->AddInstruction(new (arena_) HStoreLocal(local, instruction))
805 HLocal* local = GetLocalAt(register_index); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 51 /** whether any instruction has local variable info */
89 * Returns whether this instance has any local variable information.
91 * @return whether this instance has any local variable information
99 * instruction for local variable information.
190 LocalItem local = spec.getLocalItem(); local
191 CstUtf8 name = local.getName();
192 CstUtf8 signature = local.getSignature();
231 * which updates the position and local info flags.
LocalList.java 31 * List of local variables. Each local variable entry indicates a
89 * Disposition of a local entry.
92 /** local started (introduced) */
95 /** local ended without being replaced */
98 /** local ended because it was directly replaced */
101 /** local ended because it was moved to a different register */
105 * local ended because the previous local clobbered this one
111 * local ended because the next local clobbered this on
355 RegisterSpec local = ((LocalStart) insn).getLocal(); local
356 state.startLocal(insn.getAddress(), local); local
358 RegisterSpec local = ((LocalEnd) insn).getLocal(); local
359 state.endLocal(insn.getAddress(), local); local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaRenamer.java 85 /** map of SSA register number to debug (local var names) or null of n/a */
207 * Gets a local variable item for a specified register.
210 * @return {@code null-ok;} Local variable name or null if none
221 * Records a debug (local variable) name for a specified register.
227 LocalItem local = ssaReg.getLocalItem(); local
234 ssaRegToLocalItems.set(reg, local);
290 * contains the set of moves we need to keep to preserve local
417 * an SSA register spec has received or lost a local variable name,
419 * lose its local variable name as well.
420 * <li> Records the local name associated with th
    [all...]
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint.cc 58 // Returns the delta between the local timezone and UTC.
62 base::Time::Exploded local; local
63 utc.LocalExplode(&local);
65 return base::Time::FromUTCExploded(local) - utc;
  /external/clang/test/CXX/class.access/
p4.cpp 123 A local; // expected-error {{variable of type 'test3::A' has private destructor}} local
317 class Local {
  /external/clang/test/CodeGenCXX/
microsoft-abi-static-initializers.cpp 194 // dynamic initializer would cause subsequent static local numberings to be
203 static int local; local
204 // CHECK: @"\01?local@?1??switch_test3@DynamicDLLImportInitVSMangling@@YAHXZ@4HA"
205 return local++;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
OutputFinisher.java 58 /** whether any instruction has local variable info */
98 * Returns whether this instance has any local variable information.
100 * @return whether this instance has any local variable information
108 * instruction for local variable information.
199 LocalItem local = spec.getLocalItem(); local
200 CstString name = local.getName();
201 CstString signature = local.getSignature();
240 * which updates the position and local info flags.
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaRenamer.java 86 /** map of SSA register number to debug (local var names) or null of n/a */
208 * Gets a local variable item for a specified register.
211 * @return {@code null-ok;} Local variable name or null if none
222 * Records a debug (local variable) name for a specified register.
228 LocalItem local = ssaReg.getLocalItem(); local
235 ssaRegToLocalItems.set(reg, local);
291 * contains the set of moves we need to keep to preserve local
418 * an SSA register spec has received or lost a local variable name,
420 * lose its local variable name as well.
421 * <li> Records the local name associated with th
    [all...]
  /external/ipsec-tools/src/racoon/
sockmisc.c 260 struct sockaddr_storage local; local
264 getsockname(s, (struct sockaddr *)&local, &len) == -1) {
269 return dupsaddr((struct sockaddr *)&local);
321 /* get local address against the destination. */
326 struct sockaddr *local; local
331 if ((local = racoon_calloc(1, local_len)) == NULL) {
353 if (getsockname(s, local, &local_len) < 0) {
361 return local;
364 if (local != NULL)
365 racoon_free(local);
    [all...]
  /external/iputils/ninfod/
ni_ifaddrs.c 104 void *local; member in struct:rtmaddr_ifamap
451 ifamap.local = rtadata;
487 if (!ifamap.local) {
488 ifamap.local = ifamap.address;
492 ifamap.address = ifamap.local;
497 memcmp(ifamap.address, ifamap.local, ifamap.address_len))) {
498 /* p2p; address is peer and local is ours */
501 ifamap.address = ifamap.local;
  /external/iputils/
rarpd.c 63 __u32 local; member in struct:ifaddr
175 if (ifa->local == addr &&
185 ifa->local = addr;
378 laddr = ifa->local;
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Analyzer.java 155 int local = 0; local
158 current.setLocal(local++, interpreter.newValue(ctype));
161 current.setLocal(local++, interpreter.newValue(args[i]));
163 current.setLocal(local++, interpreter.newValue(null));
166 while (local < m.maxLocals) {
167 current.setLocal(local++, interpreter.newValue(null));
395 * @param nLocals the maximum number of local variables of the frame.
  /external/mtpd/
pptp.c 75 static uint16_t local; variable
245 .local = local,
283 while (!local) {
284 local = random();
287 "(local = %d)", local);
291 outgoing.ocrq.call = local;
309 if (state == OCRQ && incoming.ocrp.peer == local) {
  /external/zlib/src/examples/
gzlog.c 241 #define local static macro
306 local unsigned char log_gzhead[] = {
319 local unsigned char log_gzext[] = {
331 local unsigned char log_gzbody[] = {
348 local int log_lock(struct log *log)
372 local void log_touch(struct log *log)
384 local int log_check(struct log *log)
396 local void log_unlock(struct log *log)
410 local int log_head(struct log *log)
437 local int log_mark(struct log *log, int op
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAnnotation.java 171 String local = importRewrite.addImport(FQCN_SUPPRESS_LINT); local
176 newAnnotation.setTypeName(ast.newSimpleName(local));
259 String local = importRewrite.addImport(FQCN_TARGET_API); local
264 newAnnotation.setTypeName(ast.newSimpleName(local));
  /art/runtime/
jni_internal_test.cc 1001 jclass local = env_->FindClass("java\/lang\/Object"); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 30 * List of local variables. Each local variable entry indicates a
88 * Disposition of a local entry.
91 /** local started (introduced) */
94 /** local ended without being replaced */
97 /** local ended because it was directly replaced */
100 /** local ended because it was moved to a different register */
104 * local ended because the previous local clobbered this one
110 * local ended because the next local clobbered this on
354 RegisterSpec local = ((LocalStart) insn).getLocal(); local
355 state.startLocal(insn.getAddress(), local); local
    [all...]
OutputFinisher.java 59 /** whether any instruction has local variable info */
111 * Returns whether this instance has any local variable information.
113 * @return whether this instance has any local variable information
121 * instruction for local variable information.
212 LocalItem local = spec.getLocalItem(); local
213 CstString name = local.getName();
214 CstString signature = local.getSignature();
253 * which updates the position and local info flags.

Completed in 1085 milliseconds

1 2 3 4 5 6 78 91011>>