HomeSort by relevance Sort by last modified time
    Searched defs:local (Results 151 - 175 of 1336) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/zlib/src/
zutil.h 36 #ifndef local
37 # define local static macro
40 define "local" for the non-static meaning of "static", for readability
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_OffloadManager.cpp 124 struct sockaddr_nl local; local
136 memset(&local, 0, sizeof(struct sockaddr_nl));
137 addr_len = sizeof(local);
138 getsockname(fd, (struct sockaddr *)&local, &addr_len);
139 IPACMDBG_H(" FD %d, nl_pad %d nl_pid %u\n", fd, local.nl_pad, local.nl_pid);
  /hardware/ril/libril/
ril_internal.h 77 char local; // responses to local commands do not go back to command process member in struct:android::RequestInfo
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atmsvc.h 33 struct sockaddr_atmsvc local; /* local SVC address */ member in struct:atmsvc_msg
  /system/tools/aidl/
aidl_language.cpp 196 AidlMember* local = member.release(); local
197 AidlMethod* method = local->AsMethod();
198 AidlIntConstant* int_constant = local->AsIntConstant();
199 AidlStringConstant* string_constant = local->AsStringConstant();
  /toolchain/binutils/binutils-2.27/gas/config/
obj-elf.h 61 /* Whether the symbol has been marked as local. */
62 int local; member in struct:elf_obj_sy
  /toolchain/binutils/binutils-2.27/zlib/
crc32.c 33 #define local static macro
40 local unsigned long crc32_little OF((unsigned long,
42 local unsigned long crc32_big OF((unsigned long,
49 /* Local functions for crc concatenation */
50 local unsigned long gf2_matrix_times OF((unsigned long *mat,
52 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
53 local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
58 local volatile int crc_table_empty = 1;
59 local z_crc_t FAR crc_table[TBLS][256];
60 local void make_crc_table OF((void))
    [all...]
minigzip.c 135 # define local static macro
138 # define local macro
171 local char buf[BUFLEN];
239 local char buf[BUFLEN];
266 local char outfile[MAX_NAME_LEN];
300 local char buf[MAX_NAME_LEN];
zutil.h 36 #ifndef local
37 # define local static macro
  /toolchain/binutils/binutils-2.27/zlib/examples/
enough.c 107 #define local static macro
170 local int max; /* maximum allowed bit length for the codes */
171 local int root; /* size of base code table in bits */
172 local int large; /* largest code table so far */
173 local size_t size; /* number of elements in num and done */
174 local int *code; /* number of symbols assigned to each bit length */
175 local big_t *num; /* saved results array for code counting */
176 local struct tab *done; /* states already evaluated array */
182 local void cleanup(void)
203 local big_t count(int syms, int len, int left
    [all...]
gzjoin.c 63 #define local static macro
66 local int bail(char *why1, char *why2)
87 local void bclose(bin *in)
100 local bin *bopen(char *name)
121 local int bload(bin *in)
145 local unsigned long bget4(bin *in)
157 local void bskip(bin *in, unsigned skip)
204 local void gzhead(bin *in)
245 local void put4(unsigned long val, FILE *out)
254 local void zpull(z_streamp strm, bin *in
    [all...]
zran.c 60 #define local static macro
82 local void free_index(struct access *index)
92 local struct access *addpoint(struct access *index, int bits,
144 local int build_index(FILE *in, off_t span, struct access **built)
249 local int extract(FILE *in, struct access *index, off_t offset,
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 49 /** {@code null-ok;} local variable info associated with this register, if any */
50 private final LocalItem local; field in class:RegisterSpec
58 * @param local {@code null-ok;} the associated local variable, if any
62 LocalItem local) {
63 theInterningItem.set(reg, type, local);
97 * @param local {@code non-null;} the associated local variable
101 LocalItem local) {
102 if (local == null)
605 private LocalItem local; field in class:RegisterSpec.ForComparison
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 55 * {@code null-ok;} local variable info associated with this register,
58 private final LocalItem local; field in class:RegisterSpec
66 * @param local {@code null-ok;} the associated local variable, if any
70 LocalItem local) {
72 interningItem.set(reg, type, local);
106 * @param local {@code non-null;} the associated local variable
110 LocalItem local) {
111 if (local == null)
641 private LocalItem local; field in class:RegisterSpec.ForComparison
    [all...]
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
GASMifierMethodVisitor.class 
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/vpn/
VpnTestHelper.java 175 InetSocketAddress local = (InetSocketAddress) Os.getsockname(socket); local
176 port = local.getPort();
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioGroupTest.java 48 InetAddress local = InetAddress.getByName("::1"); local
50 mStreamA = new AudioStream(local);
57 mStreamB = new AudioStream(local);
  /dalvik/dx/src/com/android/dx/ssa/
ConstCollector.java 60 * If true, allow one local var to be involved with a collected const.
164 * Each collected constant can be used by just one local
209 * TODO: Might be nice to try and figure out which local
217 // Count one local usage only.
270 * the definition of {@code origReg} is associated with a local
271 * variable, then insert a mark-local for {@code newReg} just below
289 * This is a mark-local. it will be updated when all uses
295 LocalItem local = localAssignment.getLocalItem(); local
300 // Now add a mark-local to the new reg immediately after.
301 newReg = newReg.withLocalItem(local);
    [all...]
NormalSsaInsn.java 78 * the type or local var name so don't update use list
159 LocalItem local = assignment.getLocalItem(); local
161 if (local == null) {
PhiInsn.java 90 * Note that local association of operands are preserved in this step.
110 * @param local {@code null-ok;} new local info, if available
112 public void changeResultType(TypeBearer type, LocalItem local) {
114 getResult().getReg(), type, local)); local
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/zlib/
zutil.h 50 #ifndef local
51 # define local static macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzguts.h 106 #ifndef local
107 # define local static macro
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];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/zlib/
gzguts.h 112 #ifndef local
113 # define local static macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
zutil.h 50 #ifndef local
51 # define local static macro

Completed in 848 milliseconds

1 2 3 4 5 67 8 91011>>