/bionic/libc/string/ |
index.c | 1 /* $OpenBSD: index.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ 34 index(const char *p, int ch) function
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRBaseMapElement.h | 36 NSNumber *index; variable 39 @property (retain, getter=getIndex, setter=setIndex:) NSNumber *index; variable
|
ANTLRTokenRewriteStream.h | 43 /** What index into rewrites List are we? */ 45 /** Token buffer index. */ 46 NSInteger index; variable 51 @property (getter=getIndex, setter=setIndex:) NSInteger index; variable 54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text; 59 * Return the index of the next token to operate on. 110 /** Map String (program name) -> Integer index */ 129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex; 134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText; 139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRBaseMapElement.h | 36 NSNumber *index; variable 39 @property (retain, getter=getIndex, setter=setIndex:) NSNumber *index; variable
|
ANTLRTokenRewriteStream.h | 43 /** What index into rewrites List are we? */ 45 /** Token buffer index. */ 46 NSInteger index; variable 51 @property (getter=getIndex, setter=setIndex:) NSInteger index; variable 54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text; 59 * Return the index of the next token to operate on. 110 /** Map String (program name) -> Integer index */ 129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex; 134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText; 139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRBaseMapElement.h | 36 NSNumber *index; variable 39 @property (retain, getter=getIndex, setter=setIndex:) NSNumber *index; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRBaseMapElement.h | 36 NSNumber *index; variable 39 @property (retain) NSNumber *index; variable
|
ANTLRCharStreamState.h | 36 NSInteger index; variable 41 @property (assign) NSInteger index; variable
|
ANTLRStringStreamState.h | 35 NSUInteger index; variable 54 @property (assign) NSUInteger index; variable
|
ArrayIterator.h | 53 NSInteger index; variable 76 @property (assign) NSInteger index; variable
|
/bionic/libc/bionic/ |
if_nametoindex.c | 37 * Map an interface name into its corresponding index. 38 * Returns 0 on error, as 0 is not a valid index. 42 int index; local 50 index = 0; 53 index = ifr.ifr_ifindex; 57 return index;
|
if_indextoname.c | 38 * Map an interface index into its name. 44 int index; local
|
/external/aac/libSBRdec/src/ |
huff_dec.cpp | 96 The table entries are interpreted either as index to the next entry 108 SCHAR index = 0; local 111 while (index >= 0) { 113 index = h[index][bit]; 116 value = index+64; /* Add offset */
|
/external/chromium_org/chrome/browser/profiles/ |
avatar_menu_desktop.cc | 18 size_t index = cache.GetIndexOfProfileWithPath(profile->GetPath()); local 19 if (index == std::string::npos) { 24 *image = cache.GetAvatarIconOfProfileAtIndex(index); 26 cache.IsUsingGAIAPictureOfProfileAtIndex(index) && 27 cache.GetGAIAPictureOfProfileAtIndex(index);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLSelectElementWin.cpp | 51 int index = selectedIndex(); local 52 ASSERT(index >= 0); 53 ASSERT_WITH_SECURITY_IMPLICATION(index < static_cast<int>(listItems().size())); 54 setSelectedIndex(index);
|
/external/eigen/doc/examples/ |
Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp | 18 MatrixXf::Index index; local 20 (m.colwise() - v).colwise().squaredNorm().minCoeff(&index); 22 cout << "Nearest neighbour is column " << index << ":" << endl; 23 cout << m.col(index) << endl;
|
/external/qemu/android/ |
keycode.c | 22 int index; local 24 for (index = 0; index < 4; index++) { 25 if (code == wheel[index]) { 26 index = (index + rotation) & 3; 27 code = wheel[index];
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
decode_bwe.c | 34 WebRtc_Word16 index; local 46 err = WebRtcIsacfix_DecodeSendBandwidth(streamdata, &index); 60 index);
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
enc_lag6.cpp | 106 Word16 -- Return index of encoding 128 index = (T-17)*6 + frac - 3; 131 index = (T - 95) + 463; where T=[95..143] 142 index = (T-(t_min-1))*6 + frac - 3; 146 or 63 as the relative pitch index, it means that a transmission 186 Word16 Enc_lag6( /* o : Return index of encoding */ 194 Word16 index; local 203 /* index = T0*6 - 105 + T0_frac */ 206 index = add(i, T0_frac, pOverflow); 210 index = add(T0, 368, pOverflow) [all...] |
cbsearch.cpp | 88 Purpose : Inovative codebook search (find index and gain) 200 Word16 index; local 221 &index, 224 *(*anap)++ = index; /* sign index */ 236 &index, 239 *(*anap)++ = index; /* sign index */ 251 &index, 254 *(*anap)++ = index; /* sign index * [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrTBSearch.h | 25 int index = (low + high) >> 1; local 26 if (LT(array[index], target)) { 27 low = index + 1; 29 high = index;
|
/external/skia/src/gpu/ |
GrTBSearch.h | 25 int index = (low + high) >> 1; local 26 if (LT(array[index], target)) { 27 low = index + 1; 29 high = index;
|
/external/srtp/include/ |
ut_sim.h | 57 uint32_t index; member in struct:__anon29315 72 * ut_next_index(&u) returns the next index from the simulated
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/ |
omxVCCOMM_Copy16x16.c | 60 OMX_INT count,index, x, y; local 71 for (y = 0, count = 0, index = 0; y < 16; y++, count = count + step - 16) 73 for (x = 0; x < 16; x++, count++, index++) 75 pDst[index] = pSrc[count];
|
omxVCCOMM_Copy8x8.c | 60 OMX_INT count,index, x, y; local 71 for (y = 0, count = 0, index = 0; y < 8; y++, count = count + step - 8) 73 for (x = 0; x < 8; x++, count++, index++) 75 pDst[index] = pSrc[count];
|