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

1 2 3 4 5

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
JsrInstruction.java 61 InstructionHandle ih = super.getTarget(); local
63 while (ih.getPrev() != null) {
64 ih = ih.getPrev();
67 while (ih.getInstruction() != this) {
68 ih = ih.getNext();
70 final InstructionHandle toThis = ih;
71 while (ih != null) {
72 ih = ih.getNext()
    [all...]
LineNumberGen.java 32 private InstructionHandle ih; field in class:LineNumberGen
39 * @param ih instruction handle to reference
41 public LineNumberGen(final InstructionHandle ih, final int src_line) {
42 setInstruction(ih);
48 * @return true, if ih is target of this line number
51 public boolean containsTarget( final InstructionHandle ih ) {
52 return this.ih == ih;
62 if (old_ih != ih) {
63 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih + "}")
    [all...]
InstructionList.java 139 InstructionHandle ih = start; local
142 return ih;
144 ih = ih.getNext();
173 InstructionHandle ih; local
175 ih = append((BranchInstruction) i);
177 ih = append(i);
179 ih.setPosition(off);
180 ihs[count] = ih;
198 InstructionHandle ih = findHandle(ihs, pos, count, target) local
261 InstructionHandle ih; local
319 final InstructionHandle ih = InstructionHandle.getInstructionHandle(i); local
332 final BranchHandle ih = BranchHandle.getBranchHandle(i); local
492 InstructionHandle ih; local
507 final InstructionHandle ih = InstructionHandle.getInstructionHandle(i); local
520 final BranchHandle ih = BranchHandle.getBranchHandle(i); local
753 InstructionHandle ih; local
1021 InstructionHandle ih = start; local
1060 InstructionHandle ih = start; local
    [all...]
InstructionTargeter.java 35 boolean containsTarget(InstructionHandle ih);
CodeExceptionGen.java 132 * @return true, if ih is target of this handler
135 public boolean containsTarget( final InstructionHandle ih ) {
136 return (start_pc == ih) || (end_pc == ih) || (handler_pc == ih);
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
InstructionHandleTestCase.java 29 final InstructionHandle ih = InstructionHandle.getInstructionHandle(new NOP());// have to start with a valid non BI local
30 Assert.assertNotNull(ih);
31 ih.setInstruction(null);
32 Assert.assertNotNull(ih);
37 final InstructionHandle ih = InstructionHandle.getInstructionHandle(new NOP());// have to start with a valid non BI local
38 Assert.assertNotNull(ih);
39 ih.setInstruction(new NOP());
40 Assert.assertNotNull(ih);
45 final InstructionHandle ih = InstructionHandle.getInstructionHandle(new NOP());// have to start with a valid non BI local
46 Assert.assertNotNull(ih);
59 final InstructionHandle ih = il.append(InstructionConst.NOP); local
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
ExceptionHandlers.java 50 for (InstructionHandle ih=ceg.getStartPC(); ih != ceg.getEndPC().getNext(); ih=ih.getNext()) {
52 hs = exceptionhandlers.get(ih);
55 exceptionhandlers.put(ih, hs);
64 * handlers that protect the instruction ih.
66 public ExceptionHandler[] getExceptionHandlers(final InstructionHandle ih) {
67 final Set<ExceptionHandler> hsSet = exceptionhandlers.get(ih);
  /external/u-boot/arch/arm/lib/
image.c 32 struct Image_header *ih; local
38 ih = (struct Image_header *)map_sysmem(image, 0);
40 if (ih->magic != le32_to_cpu(LINUX_ARM64_IMAGE_MAGIC)) {
50 if (ih->image_size == 0) {
55 image_size = le64_to_cpu(ih->image_size);
56 text_offset = le64_to_cpu(ih->text_offset);
67 if (!force_reloc && (le64_to_cpu(ih->flags) & BIT(3)))
74 unmap_sysmem(ih);
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifFrame.java 7 int ix, iy, iw, ih; field in class:GifFrame
  /external/avb/test/
image_handler_unittest.py 117 ih = avbtool.ImageHandler(self.TEST_FILE_SPARSE_PATH)
120 self.assertEqual(ih.tell(), 0)
123 self.assertEqual(ih.read(14), bytearray('Barfoo43Barfoo'))
124 self.assertEqual(ih.tell(), 14)
125 self.assertEqual(ih.read(2), bytearray('43'))
126 self.assertEqual(ih.tell(), 16)
129 ih.seek(0x6000 + 1)
130 self.assertEqual(ih.read(4), bytearray('\x02\x03\x04\x01'))
133 ih.seek(0x3000 - 10)
134 self.assertEqual(ih.read(12), bytearray('43Barfoo43\x00\x00')
    [all...]
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 83 int ih[] = {0, 1, 1}; local
84 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
85 r = std::unique(Iter(ih), Iter(ih+sh));
86 assert(base(r) == ih + 2);
87 assert(ih[0] == 0);
88 assert(ih[1] == 1);
160 Ptr ih[3]; local
161 ih[1].reset(&one)
    [all...]
unique_pred.pass.cpp 105 int ih[] = {0, 1, 1}; local
106 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
108 r = std::unique(Iter(ih), Iter(ih+sh), count_equal());
109 assert(base(r) == ih + 2);
110 assert(ih[0] == 0);
111 assert(ih[1] == 1);
198 Ptr ih[3]; local
199 ih[1].reset(&one)
    [all...]
  /bionic/libc/kernel/uapi/linux/
coda.h 219 struct coda_in_hdr ih; member in struct:coda_open_in
229 struct coda_in_hdr ih; member in struct:coda_store_in
237 struct coda_in_hdr ih; member in struct:coda_release_in
245 struct coda_in_hdr ih; member in struct:coda_close_in
253 struct coda_in_hdr ih; member in struct:coda_ioctl_in
266 struct coda_in_hdr ih; member in struct:coda_getattr_in
274 struct coda_in_hdr ih; member in struct:coda_setattr_in
282 struct coda_in_hdr ih; member in struct:coda_access_in
292 struct coda_in_hdr ih; member in struct:coda_lookup_in
303 struct coda_in_hdr ih; member in struct:coda_create_in
316 struct coda_in_hdr ih; member in struct:coda_remove_in
324 struct coda_in_hdr ih; member in struct:coda_link_in
333 struct coda_in_hdr ih; member in struct:coda_rename_in
343 struct coda_in_hdr ih; member in struct:coda_mkdir_in
354 struct coda_in_hdr ih; member in struct:coda_rmdir_in
362 struct coda_in_hdr ih; member in struct:coda_symlink_in
372 struct coda_in_hdr ih; member in struct:coda_readlink_in
381 struct coda_in_hdr ih; member in struct:coda_fsync_in
388 struct coda_in_hdr ih; member in struct:coda_vget_in
418 struct coda_in_hdr ih; member in struct:coda_open_by_fd_in
427 struct coda_in_hdr ih; member in struct:coda_open_by_path_in
444 struct coda_in_hdr ih; member in union:inputArgs
    [all...]
  /external/kernel-headers/original/uapi/linux/
coda.h 322 struct coda_in_hdr ih; member in struct:coda_open_in
336 struct coda_in_hdr ih; member in struct:coda_store_in
347 struct coda_in_hdr ih; member in struct:coda_release_in
358 struct coda_in_hdr ih; member in struct:coda_close_in
369 struct coda_in_hdr ih; member in struct:coda_ioctl_in
386 struct coda_in_hdr ih; member in struct:coda_getattr_in
398 struct coda_in_hdr ih; member in struct:coda_setattr_in
409 struct coda_in_hdr ih; member in struct:coda_access_in
425 struct coda_in_hdr ih; member in struct:coda_lookup_in
440 struct coda_in_hdr ih; member in struct:coda_create_in
457 struct coda_in_hdr ih; member in struct:coda_remove_in
468 struct coda_in_hdr ih; member in struct:coda_link_in
481 struct coda_in_hdr ih; member in struct:coda_rename_in
494 struct coda_in_hdr ih; member in struct:coda_mkdir_in
509 struct coda_in_hdr ih; member in struct:coda_rmdir_in
520 struct coda_in_hdr ih; member in struct:coda_symlink_in
533 struct coda_in_hdr ih; member in struct:coda_readlink_in
546 struct coda_in_hdr ih; member in struct:coda_fsync_in
556 struct coda_in_hdr ih; member in struct:coda_vget_in
609 struct coda_in_hdr ih; member in struct:coda_open_by_fd_in
625 struct coda_in_hdr ih; member in struct:coda_open_by_path_in
653 struct coda_in_hdr ih; \/* NB: every struct below begins with an ih *\/ member in union:inputArgs
    [all...]
  /external/apache-commons-bcel/src/examples/
JasminVisitor.java 191 InstructionHandle ih = bi.getTarget(); local
192 put(ih, "Label" + label_counter++ + ":");
198 InstructionHandle ih = lv.getStart(); local
199 put(ih, "Label" + label_counter++ + ":");
200 ih = lv.getEnd();
201 put(ih, "Label" + label_counter++ + ":");
206 InstructionHandle ih = c.getStartPC(); local
208 put(ih, "Label" + label_counter++ + ":");
209 ih = c.getEndPC();
210 put(ih, "Label" + label_counter++ + ":")
217 InstructionHandle ih = ln.getInstruction(); local
    [all...]
  /external/toybox/toys/net/
ping.c 91 struct icmphdr *ih = (void *)toybuf; local
211 memset(ih, 0, sizeof(*ih));
212 ih->type = (ai->ai_family == AF_INET) ? 8 : 128;
213 ih->un.echo.id = getpid();
214 ih->un.echo.sequence = ++seq;
215 if (TT.s >= 4) *(unsigned *)(ih+1) = tnow;
217 ih->checksum = 0;
218 ih->checksum = pingchksum((void *)toybuf, TT.s+sizeof(*ih));
    [all...]
  /external/ltp/testcases/kernel/syscalls/utils/
inotify.h 74 * h_list is protected by ih->mutex of the associated inotify_handle.
76 * ih, inode, and wd are never written to once the watch is created.
86 struct inotify_handle *ih; /* associated inotify handle */ member in struct:inotify_watch
176 static inline void inotify_destroy(struct inotify_handle *ih)
180 static inline __s32 inotify_find_watch(struct inotify_handle *ih, struct inode *inode,
186 static inline __s32 inotify_find_update_watch(struct inotify_handle *ih,
192 static inline __s32 inotify_add_watch(struct inotify_handle *ih,
199 static inline int inotify_rm_watch(struct inotify_handle *ih,
205 static inline int inotify_rm_wd(struct inotify_handle *ih, __u32 wd)
210 static inline void inotify_remove_watch_locked(struct inotify_handle *ih,
    [all...]
  /device/google/contexthub/firmware/lib/libm/
kf_rem_pio2.c 62 __int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
98 ih = 0;
102 ih = iq[jz-1]>>(7-q0);
104 else if(q0==0) ih = iq[jz-1]>>8;
105 else if(z>=(float)0.5) ih=2;
107 if(ih>0) { /* q > 0.5 */
125 if(ih==2) {
179 y[0] = (ih==0)? fw: -fw;
185 y[0] = (ih==0)? fw: -fw;
188 y[1] = (ih==0)? fw: -fw;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
k_rem_pio2.c 120 * ih integer. If >0 it indicates q[] is >= 0.5, hence
159 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
194 ih = 0;
198 ih = iq[jz-1]>>(23-q0);
200 else if(q0==0) ih = iq[jz-1]>>23;
201 else if(z>=0.5) ih=2;
203 if(ih>0) { /* q > 0.5 */
221 if(ih==2) {
275 y[0] = (ih==0)? fw: -fw;
281 y[0] = (ih==0)? fw: -fw;
    [all...]
  /external/fdlibm/
k_rem_pio2.c 116 * ih integer. If >0 it indicates q[] is >= 0.5, hence
170 int jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
205 ih = 0;
209 ih = iq[jz-1]>>(23-q0);
211 else if(q0==0) ih = iq[jz-1]>>23;
212 else if(z>=0.5) ih=2;
214 if(ih>0) { /* q > 0.5 */
232 if(ih==2) {
286 y[0] = (ih==0)? fw: -fw;
292 y[0] = (ih==0)? fw: -fw;
    [all...]
  /external/u-boot/fs/reiserfs/
reiserfs_private.h 250 #define ih_version(ih) (__le16_to_cpu((ih)->ih_version))
252 #define IH_KEY_OFFSET(ih) (ih_version(ih) == ITEM_VERSION_1 \
253 ? __le32_to_cpu((ih)->ih_key.u.v1.k_offset) \
254 : offset_v2_k_offset(&((ih)->ih_key.u.v2)))
256 #define IH_KEY_ISTYPE(ih, type) (ih_version(ih) == ITEM_VERSION_1 \
257 ? __le32_to_cpu((ih)->ih_key.u.v1.k_uniqueness) == V1_##type \
258 : offset_v2_k_type(&((ih)->ih_key.u.v2)) == V2_##type
    [all...]
  /external/webrtc/talk/session/media/
yuvscaler_unittest.cc 98 bool TestScale(int iw, int ih, int ow, int oh, int offset, bool usefile,
102 size_t isize = I420_SIZE(iw, ih);
116 if (!LoadPlanarYuvTestImage("faces", iw, ih, ibuf) ||
149 EXPECT_EQ(0, libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh,
193 const int iw = 640, ih = 360; local
195 ALIGN16(uint8_t ibuf[I420_SIZE(iw, ih)]);
199 ASSERT_TRUE(LoadPlanarYuvTestImage("faces", iw, ih, ibuf));
201 libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, 0, false);
209 const int iw = 640, ih = 360; local
212 scoped_ptr<uint8_t[]> ibuffer(new uint8_t[I420_SIZE(iw, ih) + kAlignment])
    [all...]
  /external/libcxx/test/std/experimental/func/func.searchers/func.searchers.default/
default.pass.cpp 75 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; local
76 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
78 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3));
  /external/libcxx/test/std/experimental/func/func.searchers/func.searchers.default/func.searchers.default.creation/
make_default_searcher.pass.cpp 60 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; local
61 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
63 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3));
make_default_searcher.pred.pass.cpp 72 int ih[] = {0, 1, 1, 1, 1, 2, 3, 0, 1, 2, 3, 4}; local
73 const unsigned sh = sizeof(ih)/sizeof(ih[0]);
75 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3), sh*3);

Completed in 1504 milliseconds

1 2 3 4 5