Home
last modified time | relevance | path

Searched refs:loc (Results 1 – 9 of 9) sorted by relevance

/device/google/contexthub/firmware/os/inc/
Dtoolchain.h46 #define PLACE_IN(loc, type, name) _Pragma(PRAGMA_HELPER(location,loc,)) type name argument
47 #define PLACE_IN_NAKED(loc, type, name) _Pragma(PRAGMA_HELPER(location,loc,)) __task type name argument
88 #define PLACE_IN(loc, type, name) type __attribute__ ((section(loc))) name
89 #define PLACE_IN_NAKED(loc, type, name) type __attribute__ ((naked, section(loc))) name
/device/linaro/hikey/hifi/xaf/hifi-dpf/core/util/gdbstub/
Dgdbstub-entry.S24 .macro SAVE_ reg, loc argument
26 s32i a1, a3, \loc * 4
32 .macro LOAD_ reg, loc argument
33 l32i a1, a3, \loc * 4
/device/generic/goldfish/gnss/
Ddata_sink.cpp22 void DataSink::gnssLocation(const ahg20::GnssLocation& loc) const { in gnssLocation()
25 cb20->gnssLocationCb_2_0(loc); in gnssLocation()
/device/generic/goldfish-opengl/
Dcmake_transform.py183 for (loc, cmklist) in cmake.iteritems():
184 logging.info('Writing to %s', loc)
185 with open(loc, 'w') as fn:
/device/generic/goldfish-opengl/android-emu/android/base/
DStringView.h191 size_t loc = find(other, off); variable
192 if (loc == std::string::npos) return StringView("");
193 return { mString + loc, end() };
/device/generic/goldfish-opengl/system/GLESv1_enc/
DGLEncoder.cpp310 int loc = ctx->m_state->getLocation(GL_TEXTURE_COORD_ARRAY); in s_glTexCoordPointer() local
311 ctx->m_state->setVertexAttribState(loc, size, type, false, stride, data); in s_glTexCoordPointer()
318 int loc = ctx->m_state->getLocation(GL_MATRIX_INDEX_ARRAY_OES); in s_glMatrixIndexPointerOES() local
319 ctx->m_state->setVertexAttribState(loc, size, type, false, stride, data); in s_glMatrixIndexPointerOES()
326 int loc = ctx->m_state->getLocation(GL_WEIGHT_ARRAY_OES); in s_glWeightPointerOES() local
327 ctx->m_state->setVertexAttribState(loc, size, type, false, stride, data); in s_glWeightPointerOES()
334 int loc = ctx->m_state->getLocation(state); in s_glEnableClientState() local
335 ctx->m_state->enable(loc, 1); in s_glEnableClientState()
342 int loc = ctx->m_state->getLocation(state); in s_glDisableClientState() local
343 ctx->m_state->enable(loc, 0); in s_glDisableClientState()
[all …]
/device/google/contexthub/firmware/os/cpu/cortexm4/
Dcpu.c65 void *loc = platGetPersistentRamStore(&bytes); in getPersistedData() local
67 …ytes >= sizeof(struct RamPersistedDataAndDropbox) ? (struct RamPersistedDataAndDropbox*)loc : NULL; in getPersistedData()
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
DGLClientState.cpp380 int GLClientState::getLocation(GLenum loc) in getLocation() argument
384 switch(loc) { in getLocation()
407 retval = loc; in getLocation()
DGLClientState.h230 int getLocation(GLenum loc);